File size: 705 Bytes
00df592
 
 
 
 
 
 
 
355e9e7
00df592
 
355e9e7
 
 
00df592
355e9e7
 
2f8e5c4
 
355e9e7
 
 
 
 
 
 
 
 
 
 
 
 
2f8e5c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
 * SPDX-License-Identifier: Apache-2.0
 */

#footerForm {
  display: flex;
  gap: 0.75rem;
  background: transparent;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  position: sticky;
  bottom: 0;
  z-index: 1000; /* زيادة الأولوية */
  min-height: 60px; /* تأمين ارتفاع أدنى */
  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  #footerForm {
    max-width: 100%;
    padding: 0.5rem;
  }
}