
      :root {
        --teal: #3d4095;
        --teal-light: #14b8a6;
        --orange: #f58634;
        --orange-dark: #d97706;
        --text-dark: #333333;
        --text-muted: #737373;
        --bg-light: #f7f7f7;
        --white: #ffffff;
        --border-color: #e5e5e5;
      }


      /* Container */
      .doctor-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 16px;
            padding-bottom: 0;
      }

      .doctor-profile {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        margin-bottom: 60px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
      }

      .doctor-profile:last-child {
        border-bottom: none;
        margin-bottom: 0;
      }

      /* Left Column */
      .doctor-left {
        flex: 0 0 350px;
      }

      .doctor-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        object-fit: cover;
      }

      .call-now {
        margin-top: 32px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        color: var(--teal);
      }

      .call-now a {
        color: var(--teal);
        text-decoration: none;
      }

      .call-now a:hover {
        text-decoration: underline;
      }

      .call-now svg {
        width: 16px;
        height: 16px;
      }

      /* Right Column */
      .doctor-right {
        flex: 1;
        min-width: 300px;
      }

      .doctor-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
      }

      .doctor-name {
        font-size: 28px;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
      }

      .doctor-actions {
        display: flex;
        gap: 12px;
      }

      .action-btn {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.3s;
      }

      .action-btn:hover {
        background-color: var(--border-color);
      }

      .action-btn svg {
        width: 20px;
        height: 20px;
        color: var(--teal);
      }

      .doctor-qualification {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 12px;
      }

      .doctor-specialty {
        font-size: 20px;
        font-weight: 600;
        color: var(--orange);
        margin-bottom: 16px;
      }

      /* Buttons */
      .btn-outline-teal {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 24px;
        border: 2px solid var(--teal);
        background: transparent;
        color: var(--teal);
        border-radius: 50px;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .btn-outline-teal:hover {
        background-color: var(--teal);
        color: var(--white);
      }

      .btn-outline-teal svg {
        width: 16px;
        height: 16px;
      }

      /* Expertise Section */
      .expertise-section {
        margin-top: 20px;
      }

      .expertise-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
      }

      .expertise-list {
        color: var(--text-muted);
        line-height: 1.8;
        padding-left: 0;
        list-style: none;
      }

      .expertise-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
      }

      .expertise-list li::before {
        content: "•";
        color: var(--orange);
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      .expertise-highlight {
        color: var(--orange);
        font-weight: 500;
      }

      /* Page Title */
      .page-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: var(--teal);
        margin-bottom: 40px;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .doctor-profile {
          flex-direction: column;
        }

        .doctor-left {
          flex: 1;
          text-align: center;
        }

        .doctor-image {
          max-width: 250px;
          margin: 0 auto;
        }

        .call-now {
          justify-content: center;
        }

        .doctor-name {
          font-size: 24px;
        }

        .doctor-specialty {
          font-size: 18px;
        }

        .doctor-header {
          flex-direction: column;
          gap: 12px;
        }
      }
      
      
        /* Doctors Table Styles */
    .doctors-table-section {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 2px solid var(--border-color);
    }
    .doctors-table-title {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 30px;
    }
    .doctors-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .doctors-table thead tr {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    }
    .doctors-table th {
      padding: 16px 20px;
      text-align: left;
      font-weight: 600;
      font-size: 14px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .doctors-table tbody tr {
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }
    .doctors-table tbody tr:nth-child(even) {
      background-color: #fafafa;
    }
    .doctors-table tbody tr:hover {
      background-color: rgba(13, 148, 136, 0.05);
    }
    .doctors-table td {
      padding: 14px 20px;
      font-size: 14px;
      color: var(--text-dark);
      vertical-align: middle;
    }
    .doctors-table td:first-child {
      color: var(--teal);
      font-weight: 600;
    }
    .doctors-table td:last-child {
      color: var(--orange-dark);
      font-weight: 500;
    }
    /* Responsive Table */
    .table-responsive {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    @media (max-width: 768px) {
      .doctors-table th,
      .doctors-table td {
        padding: 12px 14px;
        font-size: 13px;
      }
      .doctors-table-title {
        font-size: 22px;
      }
    }