/* Brief page specific styles matching Cora exactly */

/* Ensure background images cover full viewport */
.brief-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Animations for card collapsing */
.transition-max-height {
  transition-property: max-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Custom shadow on hover for card items */
.card-item-hover-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Progress indicator animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Date selector active state */
.date-selector-active {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 2px 4px 0 rgba(239, 68, 68, 0.3);
}

/* Time of day selector styles */
.time-selector-container {
  background: rgba(7, 89, 133, 1);
  padding: 4px;
  border-radius: 9999px;
}

.time-selector-active {
  background: rgba(2, 132, 199, 1);
}

/* Card divider line color */
.card-divider {
  border-color: rgb(229 231 235);
}

.dark .card-divider {
  border-color: rgb(55 65 81);
}

/* Privé dropdown styling */
.prive-select {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.prive-select:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.account-switcher-scrollbar-hide {
  scrollbar-width: none; /* Firefox */
}

.account-switcher-scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

/* Font imports if needed */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Serif font for Brief title */
.font-serif-custom {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
}

/* Morning/Afternoon icon styles */
.sun-icon, .moon-icon {
  width: 16px;
  height: 16px;
}
