:root {
  color-scheme: light;
}

ol{
    padding-top: 10px;
}

li a, p a{
    text-decoration: underline;
    color:#618adb
}

li a, p a:hover{
    color:#1152d4
}

/* Hide scrollbar for horizontal scrolling elements */
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* Ensure horizontal scroll works smoothly on mobile */
.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
/* Mobile Navigation Styles */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 40;
  transition: right 0.3s ease-in-out;
  margin-top: 0;
  border-radius: 0;
}

#mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}

.mobile-menu-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: #f1f5f9;
  color: #64748b;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: #e2e8f0;
  color: #475569;
}

.mobile-menu-nav {
  padding: 0 1.5rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.mobile-menu-nav a:hover {
  color: #059669;
  background-color: #f0fdf4;
  padding-left: 0.5rem;
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile menu button animation */
.menu-icon-line {
  transition: all 0.3s ease;
}

.menu-icon.active .menu-icon-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active .menu-icon-line:nth-child(2) {
  opacity: 0;
}

.menu-icon.active .menu-icon-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive improvements */
@media (max-width: 640px) {
  .header-content {
    padding: 0.75rem 1rem;
  }

  .logo-section {
    gap: 0.5rem;
  }

  .logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }

  .header-title {
    font-size: 1rem;
  }

  .header-subtitle {
    font-size: 0.75rem;
  }
}
