.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5); /* زيادة الشفافية */
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 15px;
  text-align: center;
  direction: rtl;
  border-top: 3px solid #0f5193;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pwa-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px;
}

.pwa-banner-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.pwa-banner-buttons {
  display: flex;
  gap: 10px;
}

.pwa-install-btn {
  background-color: #0e5092;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.pwa-install-btn:hover {
  background-color: #3a7bc8;
}

.pwa-later-btn {
  background-color: #f8f9fa;
  color: #4a90e2;
  border: 1px solid #4a90e2;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pwa-later-btn:hover {
  background-color: #e9ecef;
}
.pwa-more-info-btn {
  background-color: #4a90e2; /* لون الخلفية */
  color: white; /* لون النص */
  padding: 10px 20px; /* المسافة الداخلية */
  border: none; /* إزالة الحدود */
  border-radius: 5px; /* حواف مستديرة */
  cursor: pointer; /* تغيير شكل المؤشر عند التحويم */
  font-size: 16px; /* حجم الخط */
}

.pwa-more-info-btn:hover {
  background-color: #0056b3; /* لون الخلفية عند التحويم */
}
/* تحسينات للهواتف المحمولة */
@media (max-width: 768px) {
  .pwa-banner-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .pwa-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .pwa-install-btn, .pwa-later-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}