/* Custom styles for Ace Line Fleet & Shift System */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Calendar Grid Customizations */
.calendar-day-cell {
  min-height: 86px;
  transition: all 0.15s ease-in-out;
}

@media (min-width: 640px) {
  .calendar-day-cell {
    min-height: 104px;
  }
}

.calendar-day-cell:hover {
  border-color: #f59e0b !important;
  transform: translateY(-1px);
}

/* Japanese weekend color conventions */
.col-sun {
  color: #f87171 !important; /* Japanese red for Sunday */
}
.col-sat {
  color: #60a5fa !important; /* Japanese blue for Saturday */
}

/* Shimmer animation */
@keyframes shimmer {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.animate-shimmer {
  animation: shimmer 2s infinite ease-in-out;
}
