.table {
    --bs-table-color: var(--bs-gray-600);
    --bs-table-bg: var(--bs-gray-100);
    --bs-table-border-color: transparent;
  }

   @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
    body {
      background-color: #f8f9fa;
      /* font-family: 'Segoe UI', sans-serif; */
    }

    .section-container {
      display: flex;
      padding: 30px;
      gap: 30px;
    }

    .left-menu {
      width: 260px;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      padding: 20px;
    }

    .left-menu h5 {
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      background: lch(85.19% 85.93 88.91);
      color: black;
      padding: 10px;
      border-radius: 6px;
    }

    .menu-item {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      margin-bottom: 10px;
      border-radius: 8px;
      background-color: #f1f1f1;
      transition: background 0.3s;
      cursor: pointer;
    }

    .menu-item:hover {
      background-color: #e0e0e0;
    }

    .menu-item i {
      font-size: 18px;
      margin-right: 12px;
      color: lch(85.19% 85.93 88.91);
    }

    .content-box {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  max-height: 530px; 
  overflow: auto;    
}

    .content-title {
      display: flex;
      align-items: center;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 20px;
      background-color: lch(85.19% 85.93 88.91);
      color: black;
      padding: 10px 15px;
      border-radius: 6px;
    }

    .content-title i {
      margin-right: 10px;
    }

    .menuLink {
      text-decoration: none;
      font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
    }

   

    .contact-card {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 15px 20px;
      margin-bottom: 12px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .contact-name {
      font-weight: 600;
      color: #2c3e50;
      font-size: 15px;
    }

    .contact-name a {
      text-decoration: none;
      color: #1a73e8;
    }

    .contact-phone {
      color: #444;
    }

    @media (max-width: 600px) {
      .contact-card {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 600px) {
  .left-menu {
    display: none !important;
  }

  .section-container {
    flex-direction: column;
    padding: 15px;
  }

  .content-box {
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 15px;
  }

  .content-title {
    font-size: 16px;
    padding: 8px 12px;
  }

  body {
    font-size: 14px;
  }

  .form-control,
  .btn {
    font-size: 14px;
  }

  .table {
    font-size: 13px;
  }
}
