/* These styles are generated from project.scss. */
:root {
        --sidebar-bg: #000000;
        --sidebar-text: #b8c4c2;
        --sidebar-active: #3d4a2b;
        --sidebar-hover: #1a1a1a;
        --accent-color: #728B18;
        --border-color: #2a2a2a;
      }
      
      body {
        overflow-x: hidden;
      }
      
      .sidebar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        background-color: var(--sidebar-bg);
        color: var(--sidebar-text);
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        border-right: 1px solid var(--border-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      }
      
      .sidebar-header {
        padding: 1.5rem 1rem;
        border-bottom: 1px solid var(--border-color);
        background: linear-gradient(135deg, var(--sidebar-bg) 0%, #1a1a1a 100%);
      }
      
      .sidebar-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #fff;
        transition: transform 0.2s;
      }
      
      .sidebar-brand:hover {
        transform: translateX(3px);
        color: #fff;
      }
      
      .sidebar-brand img {
        max-width: 45px;
        height: auto;
      }
      
      .sidebar-brand h1 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, #728B18, #93B32B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .sidebar-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 1rem 0;
      }
      
      .sidebar-content::-webkit-scrollbar {
        width: 6px;
      }
      
      .sidebar-content::-webkit-scrollbar-track {
        background: var(--sidebar-bg);
      }
      
      .sidebar-content::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 3px;
      }
      
      .sidebar-content::-webkit-scrollbar-thumb:hover {
        background: var(--sidebar-hover);
      }
      
      .nav-section-title {
        padding: 0.75rem 1.25rem 0.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #6b8a8a;
        margin-top: 0.5rem;
      }
      
      .sidebar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .nav-item {
        margin: 0.25rem 0.75rem;
      }
      
      .nav-link {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        color: var(--sidebar-text);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
        font-size: 0.95rem;
        position: relative;
      }
      
      .nav-link:hover {
        background-color: var(--sidebar-hover);
        color: #fff;
        transform: translateX(3px);
      }
      
      .nav-link.active {
        background-color: var(--sidebar-active);
        color: #fff;
        font-weight: 500;
      }
      
      .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 70%;
        background: var(--accent-color);
        border-radius: 0 4px 4px 0;
      }
      
      .nav-link i {
        margin-right: 0.75rem;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
      }
      
      .nav-link .badge {
        margin-left: auto;
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
      }
      
      .nav-link .bi-chevron-down {
        margin-left: auto;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
      }
      
      .nav-link[aria-expanded="true"] .bi-chevron-down {
        transform: rotate(180deg);
      }
      
      .submenu {
        list-style: none;
        padding: 0.5rem 0 0.5rem 0;
        margin: 0;
      }
      
      .submenu .nav-item {
        margin: 0.25rem 0.5rem 0.25rem 1.5rem;
      }
      
      .submenu .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
      }
      
      .submenu .nav-link i {
        font-size: 1rem;
        margin-right: 0.65rem;
      }
      
      .main-content {
        margin-left: 260px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        transition: margin-left 0.3s ease;
      }
      
      .main-wrapper {
        flex: 1;
        padding: 2rem;
        background-color: #f8f9fa;
      }
      
      .footer {
        background-color: #d6d6d6;
        color: #192102;
        text-align: center;
        padding: 1.5rem;
        font-size: 0.9rem;
        border-top: 1px solid #d6d6d6;
      }
      
      /* Mobile Toggle Button */
      .sidebar-toggle {
        display: none;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1001;
        background: var(--sidebar-bg);
        color: #fff;
        border: none;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      }
      
      /* Mobile Responsive */
      @media (max-width: 768px) {
        .sidebar-wrapper {
          left: -260px;
        }
        
        .sidebar-wrapper.show {
          left: 0;
        }
        
        .main-content {
          margin-left: 0;
        }
        
        .sidebar-toggle {
          display: block;
        }
        
        .sidebar-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 999;
        }
        
        .sidebar-overlay.show {
          display: block;
        }
      }
      
.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.text-primary {
  background: linear-gradient(135deg, #728B18, #93B32B) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.bg-dark {
  background-color: #1a1a1a !important;
}

.btn-primary {
  background-color: #1a1a1a;
  color: white;
 
}

.btn-primary:hover {
  background-color: #151515;
  color: white;
}

