/* Update Banner Styles */
.update-banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

.update-banner-overlay.hidden {
  display: none;
}

.update-banner {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease-in-out;
  overflow: hidden;
}

.update-banner-header {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  padding: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.update-banner-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.update-banner-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.update-banner-content {
  padding: 2rem;
}

.update-banner-message {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
}

.update-banner-highlight {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #92400e;
}

.update-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.update-banner-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.update-banner-btn-primary {
  background: #0284c7;
  color: white;
}

.update-banner-btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.update-banner-btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

.update-banner-btn-secondary:hover {
  background: #e5e7eb;
}

.update-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.2s;
  z-index: 1;
}

.update-banner-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.update-banner-footer {
  padding: 1rem 2rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Mobile responsiveness */
@media (max-width: 640px) {
  .update-banner {
    margin: 1rem;
  }
  
  .update-banner-header {
    padding: 1.25rem;
  }
  
  .update-banner-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  
  .update-banner-title {
    font-size: 1.25rem;
  }
  
  .update-banner-content {
    padding: 1.5rem;
  }
  
  .update-banner-actions {
    flex-direction: column;
  }
  
  .update-banner-btn {
    width: 100%;
  }
}
