/* html, body {
        height: 100%;
        margin: 0;
        overflow: hidden;
        font-family: 'Segoe UI', sans-serif;
        margin: 0;
        background-color: #f8f9fa;
      } */


      .full-height {
        height: 100vh;
        overflow-y: auto;
      }
    .sidebar {
      background-color: #ffffff;
      border-right: 1px solid #dee2e6;
      width: 250px;
      min-height: 100vh;
      padding-top: 20px;
    }
    .sidebar a {
      color: #1F4258;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .sidebar a:hover {
      background-color: #f1f1f1;
    }
    .sidebar .btn-primary {
      margin: 20px;
      width: calc(100% - 40px);
    }
    .link-active{
      color: #fff !important;
      background: #165f9a !important;
     }
     .link-secondary{
          background-color: #1F4258 !important;
          color: white !important;
     }
    .topbar {
      background-color: #ffffff;
      padding: 10px 20px;
      border-bottom: 1px solid #dee2e6;
    }
    .topbar .dropdown-toggle {
      font-weight: 500;
      color: #212529;
    }
    .topbar .dropdown-toggle::after {
      margin-left: 10px;
    }
    .card-icon {
      font-size: 24px;
      color: #458BB9;
    }
    .height-550{
        min-height: 300px;
        min-width: 300px;
    }
        .sidebar {
      width: 240px;
      min-height: 100vh;
      /* color: #fff; */
      position: fixed;
      left: 0; top: 0; bottom: 0;
      z-index: 1040;
      transition: transform 0.3s ease;
      transform: translateX(0);
      display: flex;
      flex-direction: column;
    }
    .sidebar.hide {
      transform: translateX(-100%);
    }
    .sidebar a, .sidebar button {
      color: #1F4258;
      margin: 0.5rem 1rem;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .sidebar a:hover, .sidebar button:hover {
      color: #fff;
      background: #165f9a;
    }
    .sidebar .mt-auto a { font-size: 0.95rem; }
    .main-content {
      margin-left: 240px;
      transition: margin-left 0.3s ease;
      background-color: #FAFAFA ;
    }
    .top-navbar {
      background: #fff;
      border-bottom: 1px solid #e9ecef;
      padding: 0.75rem 1rem;
      position: sticky;
      top: 0;
      z-index: 1030;
      box-shadow: 0 2px 8px rgba(52,58,64,0.04);
    }
    .menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      color: #343a40;
      margin-right: 1rem;
    }
      .logo-fix {
           width: 150px;
            position: absolute;
      }
    @media (max-width: 991.98px) {
      .sidebar {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: 220px;
        min-height: 100vh;
        transform: translateX(-100%);
      }
      .sidebar.show {
        transform: translateX(0);
      }
      .main-content {
        margin-left: 0;
      }
      .menu-btn {
        display: inline-block;
      }
      .top-navbar {
        padding: 0.75rem 0.5rem;
      }
      .sidebar a:hover, .sidebar button:hover {
      color: #fff;
      background: #165f9a;
    }

    }