/* Mobile Sidebar Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-logo svg {
  width: 150px;
  height: auto;
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.sidebar-close:hover {
  /* background-color: #e9ecef; */
}

.sidebar-close svg {
    fill: #0044b5;
}

.sidebar-nav {
  flex: 1;
  padding: 20px 0;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-menu li {
  padding-left: 1rem;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #0044b5;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.2s;
  border-right: 4px solid transparent;
}

.sidebar-menu a:hover {
  background-color: #f8f9fa;
  border-right-color: #0044b5;
  padding-right: 24px;
}

/* Overlay for sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hide sidebar on desktop */
@media (min-width: 768px) {
  .mobile-sidebar {
    display: none;
  }
}