
    .two-doctors {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .two-doctors > .col-lg-6 {
      max-width: 48%;
    }
    .doctor-card {
      display: flex;
      flex-direction: column;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px;
      background-color: #eef5ff;
      height: 100%;
    }
    .doctor-card-footer {
        margin-top: auto;
        padding-top: 10px;
        text-align: right;
    }
    .dr-img {
        height: auto;
        max-height: 150px;
        object-fit: cover;
    }
    .view-dr-btn {
        margin-bottom: 10px;
        width: 69%;
        border-radius: 5px;
            padding: 2% 10%;
    }
    .sel-dr-btn { 
      width: 69%;
      border-radius: 5px;
      padding: 2% 10%;   
    }
    h1 {
      font-size: 28px;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 70px;
    }
    h4{
      text-align: center;
      margin-bottom: 50px;
    }
    .container {
      max-width: 650px;
      margin: 40px auto;
      background: #ebebeb;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .cal-container {
      max-width: 650px;
      margin: 40px auto;
      background: #ebebeb;
      color: #ff0000;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-top: 10px;
    }
    .unit-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .toggle-wrapper {
      position: relative;
      width: 250px;
      height: 40px;
      background-color: #e0e0e0;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      font-weight: bold;
    }
    .toggle-slider {
      position: absolute;
      width: 50%;
      height: 100%;
      background-color: #00a8cc;
      border-radius: 20px;
      top: 0;
      left: 0;
      transition: 0.3s ease;
      z-index: 1;
    }
    .toggle-wrapper.active .toggle-slider {
      transform: translateX(100%);
    }
    .toggle-labels {
      position: relative;
      display: flex;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }
    .toggle-labels div {
      flex: 1;
      text-align: center;
      line-height: 40px;
      color: #000;
      transition: color 0.3s ease;
    }
    .toggle-wrapper:not(.active) .toggle-labels div:first-child {
      color: #fff;
    }
    .toggle-wrapper.active .toggle-labels div:last-child {
      color: #fff;
    }
    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    label {
      display: block;
      margin-bottom: 5px;
    }
    input[type="number"], select {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .gender-boxes {
      display: flex;
      gap: 10px;
    }
    .gender-box {
      flex: 1;
      text-align: center;
      padding: 10px;
      border: 2px solid #ccc;
      border-radius: 10px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: 0.2s;
    }
    .gender-box:hover {
      border-color: #888;
    }
    input[type="radio"] {
      display: none;
    }
    input[type="radio"]:checked + .gender-box {
      border-color: #f36f21;
      background: #f36f21;
      color: white;
    }
    .height-group {
      display: flex;
      gap: 10px;
    }
    .height-group input {
      flex: 1;
    }
    .sub-btn {
      text-align: center;
      margin-top: 20px;
    }
    .sub-btn button {
      width: 50%;
      padding: 10px;
      background: #00a8cc;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
    }
    .result {
      margin-top: 20px;
      text-align: center;
      font-weight: bold;
      color: #ff0000;
    }
    .bmr-table {
  width: 60%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.bmr-table th {
  background-color: #f5f5f5;
  border: 2px solid purple;
  padding: 10px;
}

.bmr-table td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}

/* Responsive scroll for screen width below 550px */
@media screen and (max-width: 550px) {
  .bmr-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bmr-table {
    width: 700px; /* Or min-width depending on your content */
  }
}

      .doctor-list{
        align-items: center;
      }
    @media (max-width: 900px) {
      .vcal-box {
        width: 100%;
        max-width: 320px;
      }
    }
    @media (max-width: 550px) {
      .bmr-table {
        width: 93%;
        
        line-height: 19px;
      }
      .sub-btn button {
        font-size: 13px;
      }
    }
    #more {display: none;}
			form.example input[type=text] {
        padding: 11px;
        color :#8a8a8a;
        border-radius: 5px;
        float: left;
        width: 80%;
        border: 2px solid #d9e5f5;
			}

			form.example button {
        float: left;
        width: 20%;
        padding: 10px;
        font-size: 17px;
        background: none;
        border: none;
        border-left: none;
        cursor: pointer;
			}
			form.example::after {
			content: "";
			clear: both;
			display: table;
			}
			#spec-dr-display{
				padding-top: 0%;
			}

      .result-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-top: 40px;
    margin-bottom: 45px;
    background-color: #f36f21;
    padding: 10px;
    width: 68%;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

      @media (max-width: 768px) {
        .two-doctors > .col-lg-6 {
            flex: 0 0 100%;
            max-width: 100%;

        }
        .form-row{
          font-size: 14px;
        }
        .sub-btn button{
          font-size: 13px;
        }
        .doctor-card-footer {
          text-align: center;   
        }
        .result-title {
            font-size: 17px;
            line-height: 24px;
            text-align: center;
            width: 95%;
            margin-bottom: 5px;
            
        }
      }
      @media (max-width: 550px) {
        .two-doctors > .col-lg-6{
          text-align: center;
          }
        button{
            font-size: 13px;
          }
        /* .result-title {
            font-size: 17px;
            line-height: 24px;
            text-align: center;
            width: 95%;
        } */
      }