/* ============================================ */
/* HIPAA-Compliant Cookie Banner Styles */
/* ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 9999;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: slideUp 0.4s ease-out;
}

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

.cookie-banner a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-banner a:hover {
  color: #fcd34d;
}

.cookie-banner .btn {
  background: #10b981;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  margin: 8px 6px 0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.cookie-banner .btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cookie-banner .btn:active {
  transform: translateY(0);
}

.cookie-banner .btn-reject {
  background: #6b7280;
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.cookie-banner .btn-reject:hover {
  background: #4b5563;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
    font-size: 0.875rem;
  }
  
  .cookie-banner .btn {
    width: 100%;
    margin: 6px 0;
    padding: 12px 20px;
  }
}

/* Accessibility */
.cookie-banner .btn:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

.cookie-banner .btn:focus:not(:focus-visible) {
  outline: none;
}
