* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden;
    overflow-y: hidden; */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    padding: 0;
    margin: 0;
}

/* nav header */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #33A8FF;
    color: #fff;
    height: 35px;
}

.navbar-header {
    display: flex;
    align-items: center;
    margin-top: -20px;
}
.logo
{
    font-size: 20px;
    margin-left: -50px;
    border-radius:50%;
}

#toggle {
    display: none;
}

.toggle {
    font-size: 30px;
    position: fixed;
    left: 20px;
    top: 20px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 1000; 
    color: white;
}

.main-menu {
    background: #33a8ff;
    border-right: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 60px;
    overflow: hidden;
    transition: width 0.5s;
    z-index: 999;
}

.main-menu.open {
    width: 220px;
}

.main-menu ul {
    margin: 7px 0;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s;
}

.main-menu li i {
    margin-right: 10px;
    font-size: 20px;
}

.main-menu li:hover a,
.main-menu li a:hover,
.main-menu li a:focus,
.main-menu li.active a {
    color: #fff;
    background-color: #2E97E5;
}

.main-menu .nav-text {
    display: none;
    font-size: 16px;
}

.main-menu.open .nav-text {
    display: inline;
}

.main-menu ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.content {
    margin-left: 50px;
    padding: 20px;
    transition: margin-left 0.5s;
    flex-grow: 1;
}

#toggle:checked ~ .content {
    margin-left: 210px;
}

@media (max-width: 600px) {
    .main-menu {
        width: 60px;
    }

    .main-menu.open {
        width: 220px;
    }

    .main-menu.open .nav-text {
        display: inline;
    }

    #toggle:checked ~ .content {
        margin-left: 200px;
    }
}

/* body */
 /* .breadcrumb */
 .breadcrumb-container {
    display: flex;
    align-items: center;
  }

  @media (max-width: 767px) {
    .breadcrumb-container {
        display: flex;
        align-items: center;
      }
  }

  .breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb-item {
    margin: 0 5px;
  }
  
  .breadcrumb-item a {
    text-decoration: none;
    color: #007BFF; 
  }
  
  .breadcrumb-item.active {
    color: #6c757d; 
  }

  /* body section start */
  .container {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.doctor_profile {
    width: calc(100% - -200px);
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    padding: 5px 15px;
    margin-top: -40px;
    margin-left: 200px; 
    display: flex;
    align-items: center;
}

.doctor_profile img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    background-color: blue;
}

@media (max-width: 768px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
        margin-top: 0;
        margin-left: 0; 
        text-align: center; 
    }
  
    .doctor_profile img {
        margin-left: 0; 
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
        margin-top: 0;
        margin-left: 0; 
        text-align: center; 
    }

    .doctor_profile img {
        margin-left: 0; 
    }
}


.title{
    background-color: skyblue;
    color:white;
    font-size: 20px;    
}

.hospital_profile {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    display: flex;
    justify-content: center; 
    align-items: center;  
    margin-left: 50px;
    height: 30px; 
    color: black;
    border-radius: 10px;
    width: 600px;
}

@media only screen and (max-width: 768px) {
    .hospital_profile {
        display: none;
    }
}

@media (max-width: 768px) {
  .hospital_profile {
      width: 100%;
      margin-left: 0px;
      flex-direction: column;
      align-items: flex-start;
      height: 60px;
  }

}

@media (min-width: 769px) and (max-width: 1200px) {
  .hospital_profile {
      width: 50%;
      margin-left: -50px;
      flex-direction: column;
      align-items: flex-start;
      height: 60px;
  }
}

/* consultation button*/
.box{
    text-align: center;
    height: 80px;  
    margin-left: 20px;  
}

.btn {
    border-color: #007bff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    background-color: #007bff;
 border-radius: 5px;
    color: white;
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    font-weight: bold;
}
  
.btn1 {
    margin-bottom: -1px;
    background-color: #007bff;
    border-radius: 5px;
    color: white;    
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 10px;
    font-weight: bold;
}
  
.btn1:hover {
    background-color: #0056b3;
    font-weight: bold;
}


/* prescription new section */
.textarea-container1{
    display: flex;
    align-items: center;
  }
  
  .textarea-container1 label {
    margin-right: 10px;
  
  }
  
  .editable {
    flex: 1; /* This allows the input to take the remaining space */
  }
  
  .title{
    color: #000;
    font-size: 18px;
    background-color: inherit;
    font-weight: 600;
  }
  .searchbox {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 300px;
  }
  
  .searchbox:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
  }
  
   .side-btn {
    font-weight: 600;
    font-size: 16px !important;
    margin-right: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 50px;
    height: 40px;
    width: 150px;
    font-family: arial;
  }
  
  .side-btn:hover {
    background-color: #0056b3;
  }
  
  .radio-container {
    margin-top: 10px;
    display: flex;
    gap: 20px; /* Space between radio buttons */
  }
  
  .radio-container label {
    display: flex;
    align-items: center;
    gap: 5px; /* Space between radio button and text */
  }
  
  .remove-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px; /* Adjust the size as needed */
    color: red; /* Adjust the color as needed */
  }

  .patient_detail {
    width: 100%;
    overflow-x: hidden;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color:#0056b3;
    color: white;
}


/* save button */
.submit_details {
    margin-top: 10px;
    text-align: center;
    padding: 30px; 
}

.btn-submit-prescription {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    min-width: 150px;
}

.btn-submit-prescription1 {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    margin-left: 10px;
    width: 20px;
}

.btn-submit-prescription:hover {
    background-color: #1f84cb; /* Change color on hover */
}

.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

/* textbox for complaints */
.form-control {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.input-wrapper {
    display: flex;
    justify-content: center; /* Center the entire row */
    align-items: center; /* Center items vertically */
}

.input-row {
    display: flex;
    justify-content: space-between; /* Allocate space between items */
    align-items: center; /* Center items vertically */
    width: 100%;
    max-width: 800px; /* Max width to constrain the input row */
    margin-top: 25px;
}

.input-container {
    flex: 0 0 48%; /* Adjust width to reduce space between inputs */
    position: relative;
    margin-bottom: 20px;
}

.input-label {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 1rem;
    color: black;
    background-color: #fff;
    padding: 0 0.2rem;
    margin-top: -15px;
    font-weight: 600;
}
