#body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: url(/static/media/Staff-login.59ddd5cd8f9f8dfa26f3.png) no-repeat center center;
    background-size: cover;
}

.login-container {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything inside */
    justify-content: center; /* Centers content */
    max-width: 400px;
    width: 90%; /* Makes it responsive */
}

#logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
    margin: 0 auto 0;
}

input.input-field[type="text"],[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.input.input-field[type="text"],[typpe='password']:focus {
    background-color: #e8f5e9;
    border-color: #3BA092;
    outline: none;
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #3BA092;
    text-decoration: none;
    margin-top: 8px; /* Margin between password field and "Forgot Password?" */
    margin-bottom: 20px; /* Margin between "Forgot Password?" and the login button */
}
.forgot-password:hover {
    text-decoration: underline;
}
.login-button {
    width: 100%;
    padding: 12px;
    background: #3BA092;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
.login-button:hover {
    background: #2b8579;
}
.logo-text {
    margin-top: 20px;
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

 /* Toggle Switch Styles */
 .toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}
.toggle-text {
    font-size: 13px;
    font-weight: bold;
}
.admin-text {
    color: #085c34; /* Dark Blue for Admin */
    font-family: 'Arial', sans-serif;
}
.doctor-text {
    color: #085c34; /* Dark Green for Doctor */
    font-family: 'Arial', sans-serif;
}
.toggle-label {
    position: relative;
    width: 50px;
    height: 25px;
    display: inline-block;
}
.toggle-label input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 8px; /* Updated border-radius */
    cursor: pointer;
    transition: 0.4s;
}
.toggle-slider:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    border-radius: 6px; /* Slightly rounded for inner circle */
    transition: 0.4s;
}
input:checked + .toggle-slider {
    background-color: #3BA092;
}
input:checked + .toggle-slider:before {
    transform: translateX(24px);
}
/* Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#navbar-left {
    display: flex;
    align-items: center;
}

#logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}

#mfu-text {
    margin-left: 10px;
    font-size: 20px;
    color: #3BA092;
    font-weight: bold;
    margin-right: 5px;
}

#wellness-text {
    font-size: 20px;
    color: #C0B257;
    font-weight: bold;
}

#navbar-right {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.notification-btn:hover {
    background-color: #ffffff;
}

#icon {
    font-size: 20px;
    color: #333;
}

#notification-btn:focus {
    outline: none;
}

#notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

#profile {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#profile-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

#profile-name {
    margin-left: 5px;
    font-weight: bold;
}

/* Container */
.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

/* Sidebar */
#sidebar {
    width: 150px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.sidebar-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.sidebar-icon {
    width: 22px;
    height: 22px;
}

.sidebar-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-btn.logout {
    margin-top: auto;
}

.active-tab {
    background: #E0F2F1;
    color: black;
}

.sidebar-btn a {
    text-decoration: none;
    color: inherit;
}

.sidebar-btn a:hover {
    color: black;
}

/* Main Content */
.main-content-container {
    margin-left: 220px;
    margin-top: 4rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.patient-info-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.patient-info-box h1 {
    margin-bottom: 1rem;
    color: #333;
}

.patient-info-box h3 {
    margin-bottom: 0.5rem;
    color: #2c8a7d;
}

.patient-info-box p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Layout for Lab + Recommendation side by side */
.content-sections {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.lab-section {
    flex: 0.6 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Right column containing both recommendation sections */
.recommendation-column {
    flex: 1.4 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation-compare {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Responsive stacking */
@media (max-width: 768px) {
    .content-sections {
        flex-direction: column;
    }
    
    .main-content-container {
        margin-left: 0;
        padding: 1rem;
    }
    
    #sidebar {
        position: relative;
        width: 100%;
        top: 0;
    }
}

/* Lab Section */
.lab-section h3,
.recommendation-compare h3,
.improved-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.lab-result-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lab-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.lab-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lab-card-header {
    background: #2c8a7d;
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 15px;
}

.lab-details {
    padding: 1rem;
    background: #fff;
}

.lab-details p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.lab-details p:last-child {
    margin-bottom: 0;
}

/* Recommendation Cards */
.recommendation-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex: 1 1;
    align-items: stretch;
}

.recommendation-card {
    flex: 1 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    border-color: #2c8a7d;
    box-shadow: 0 2px 8px rgba(44, 138, 125, 0.1);
}

.recommendation-card.selected {
    border-color: #2c8a7d;
    background: #E0F2F1;
    box-shadow: 0 2px 8px rgba(44, 138, 125, 0.2);
}

.recommendation-card textarea {
    flex: 1 1;
    resize: none;
    width: 100%;
    border-radius: 4px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    background: #ffffff;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
    min-height: 200px;
}

.recommendation-card textarea:focus {
    outline: none;
    border-color: #3BA092;
}

.recommendation-card button {
    background-color: #2c8a7d;
    color: white;
    align-self: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.recommendation-card button:hover {
    background-color: #236963;
}

/* Improved Section - Now in right column */
.improved-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.improved-section h3 {
    color: #333;
    margin-bottom: 1rem;
}

.status-indicator {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0.5rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    display: inline-block;
}

.improved-textarea {
    width: 100%;
    max-width: 100%;
    height: 150px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.improved-textarea:focus {
    outline: none;
    border-color: #3BA092;
    box-shadow: 0 0 4px rgba(59, 160, 146, 0.4);
}

.improved-textarea:read-only {
    background-color: #f8f9fa !important;
    cursor: not-allowed !important;
}

/* Button Group - Always Visible */
.btn-group-always-visible {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.approve-btn-always {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
    background-color: #3BA092;
    color: white;
}

.approve-btn-always:hover:not(:disabled) {
    background-color: #217166;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.approve-btn-always:disabled,
.approve-btn-always.approved {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Button Group */
#btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

#btn-group button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.approve-btn {
    background-color: #3BA092 !important;
    color: white !important;
}

.approve-btn:hover:not(:disabled) {
    background-color: #3BA092 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.approve-btn:disabled {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

#btn-group button:first-child {
    background-color: #3BA092;
    color: white;
}

#btn-group button:last-child {
    background-color: #2c8a7d;
    color: white;
}

#btn-group button:first-child:hover {
    background-color: #2c8a7d;
}

#btn-group button:last-child:hover {
    background-color: #236963;
}

/* Error Message */
.error-msg {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
}

/* Loading and Error States */
.loading,
.error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    font-size: 1.2rem;
    color: #666;
}

.error {
    color: #dc3545;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
/* Reset */
/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding-top:80px;
} */

/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#navbar-left {
    display: flex;
    align-items: center;
}

#logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}

/* .logo-text {
    font-size: 20px;
    margin-left: 10px;
} */

#mfu-text {
    margin-left: 10px;
    font-size: 20px;
    color: #3BA092;
    font-weight: bold;
    margin-right:5px;
}

#wellness-text {
    font-size: 20px;
    color: #C0B257;
    font-weight: bold;
}

#navbar-right {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

#notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

#notification-btn:hover {
    background-color: #ffffff;
}

#icon {
    font-size: 20px;
    color: #333;
}

#notification-btn:focus {
    outline: none;
}

#profile {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#profile-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

#profile-name {
    margin-left: 5px;
    font-weight: bold;
}

/* Sidebar */
.sidebar {
    width: 130px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.sidebar-icon {
    width: 22px;
    height: 22px;
}

.sidebar-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-btn.logout {
    margin-top: auto;
}

.active-tab {
    background: #E0F2F1;
    color: black;
}

.sidebar-btn a {
    text-decoration: none;
    color: inherit;
}

.sidebar-btn a:hover {
    color: black;
}

/* Main Content */
/* .main-content {
    margin-left: 130px; /* space for sidebar */
    /* padding-top:80px;
    position: relative;
    z-index: 1;
} */ 

/* Unified wrapper */
.calendar-wrapper {
    max-width: 100%;
    /* margin: 0 auto 30px auto; space from navbar,top , right, bottom , left */
    margin: 0px 0px 0px 15%;
    padding-top:100px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Shared container styles */
.schedule-container,
.calendar-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Month selection */
.schedule-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.month-selection {
    display: flex;
    align-items: center;
}

.month-btn {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.month-text {
    margin: 0 15px;
    font-size: 18px;
}

/* Calendar header */
.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.calendar-header span {
    padding: 5px;
}

/* Calendar grid */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
    gap: 5px;
}

.calendar-day {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    min-height: 50px;
    margin: 5px 10px;
    gap: 5px;
}

.calendar-day.empty {
    background-color: transparent;
    box-shadow: none;
}

.calendar-day:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

.date {
    font-size: 18px;
    font-weight: bold;
}

.day-info p {
    margin: 5px 0;
}

.calendar-day .appointments,
.calendar-day .visits,
.calendar-day .surgeries {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
    border-radius: 4px;
    padding: 2px 6px;
    display: inline-block;
}

/* Colors for event types */
.appointments {
    background-color: #c0edf1;
    padding: 5px 5px !important; 
}

.visits {
    background-color: #fccdee;
}

.surgeries {
    background-color: #FFE8CD;
}
/* #main-content {
    margin-left: 100px !important;
    margin-top: 50px !important;
    padding: 20px;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 10px;
  } */
   #main-content-dashboard {
    margin-top: 100px;
    margin-left: 220px;
    padding: 20px;
    position: relative;
    z-index: 1;
   }
/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#navbar-left {
    display: flex;
    align-items: center;
}

#logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}

/* .logo-text {
    font-size: 20px;
    margin-left: 10px;
    display: flex;
    align-content: center;
} */

#mfu-text {
    margin-left: 10px;
    font-size: 20px;
    color: #3BA092;
    font-weight: bold;
    margin-right:5px;
}

#wellness-text {
    font-size: 20px;
    color: #C0B257;
    font-weight: bold;
}

#navbar-right {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

#notification-btn:hover {
    background-color: #ffffff;
}

#icon {
    font-size: 20px;
    color: #333;
}

#notification-btn:focus {
    outline: none;
}

#notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

#profile {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

#profile-name {
    margin-left: 5px;
    font-weight: bold;
    color: #333;
}
/* Container for Sidebar and Main Content */
.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

/* Sidebar */
#sidebar {
    width: 159px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.sidebar-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

#sidebar-icon {
    width: 15px;
    height: 15px;
}

.sidebar-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-btn.logout {
    margin-top: auto;
}

.active-tab {
    background: #E0F2F1;
    color:black;
}

.sidebar-btn a {
    text-decoration: none;
    color: inherit;
}

.sidebar-btn a:hover {
    color: black;
}
/* Main Content
#main-content {
    margin-left: 200px !important;
    margin-top: 100px !important;
    padding: 20px;
    flex-grow: 1;
} */
.health-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    /*margin-top: 10px; /* 🧠 push below navbar */
  }
  
  /* Card Styling */
  .health-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1 1 200px;
    max-width: 250px;
    min-width: 200px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    
  }

  .health-card .card-top{
    width: 100%;
    display: flex;
    align-items: center;
  }

  .health-card .card-bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

 .number, .info{
    width:100%;

 }
  
  /* Header row */
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  /* Label Text */
  .label {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    flex:1 1;
  }
  
  /* Icon */
  .health-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  
  /* Card Body Content */
  .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ✅ left align */
    gap: 4px;
  }
  
  /* Big Number */
  /* .card-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  } */
  
  /* Status text (under h3, left aligned) */
  /* .card-body .status {
    margin: 0;
    font-size: 12px;
    color: inherit;
    text-align: left;
  } */
  
  /* Color overrides */
  .total-patients .info {
    color: #3E3EB4;
  }
  .critical-cases .info {
    color: #A42723;
  }
  .appointments .info {
    color: #6C2F94;
  }
  .lab-results .info {
    color: #ff9800;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .health-overview {
      flex-direction: column;
      align-items: center;
    }
  
    .health-card {
      max-width: 100%;
    }
  } 
    /*patient*/
.patient-list-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 300px;
    margin-top: 20px;
    border: 1px solid #ddd;
    height: 100%; /* Ensure card takes up available height */
    display: flex;
    flex-direction: column;
}

.patient-header {
    display: flex;
    justify-content: space-between; /* Align title and controls with space between */
    align-items: center; /* Vertically center content */
    margin-bottom: 15px;
}

.patient-header h3 {
    flex: 0 1 auto; /* Allow shrinking */
    white-space: nowrap; /* Prevent line break */
    display: inline-block; /* Avoid block-level wrapping */
    margin-right: 10px; /* Space between title and controls */
}

.patient-controls {
    display: flex;
    align-items: center; /* Vertically center the search bar and button */
    gap: 10px; /* Space between the input and button */
    justify-content: flex-end; /* Align controls to the right */
    width: 100%; /* Take up the remaining width of the header */
}

.patient-controls input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 200px; /* Set a width for the search bar */
}

.patient-controls .filter-btn {
    padding: 8px 12px;
    background-color: #3BA092;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px; /* Ensure text size is consistent */
    align-items: center; /* Align icon and text in the center */
    gap: 5px; /* Space between icon and text */
}
.filter-btn img {
    width: 18px; /* Adjust icon size */
    height: 18px;
    display: inline-block; /* Prevent any misalignment */
    vertical-align: middle; /* Align with text */
}
.patient-controls .filter-btn:hover {
    background-color: #287e72;
}

.table-container {
    flex-grow: 1; /* Make the table container take the remaining height */
    overflow-y: auto; /* Enable scrolling if content exceeds the available space */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f1f1f1;
}

.view-btn:hover {
    background-color: #218838;
}


/* Container for health trends and conditions cards */
.health-trends-container {
    display: flex;
    justify-content: space-between; /* Distribute the space between the cards */
    gap: 20px; /* Add some space between the cards */
    flex-wrap: wrap; /* Allow wrapping if the screen size is smaller */
}

/* Trends Card Style */
.trends-card {
    flex: 1 1; /* Allow the trends card to take available space */
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/* Trends Card Header (Title + Month Select in a row) */
.trends-header {
    display: flex;
    justify-content: space-between; /* Distribute space between the title and select */
    align-items: center; /* Vertically align the items */
    margin-bottom: 15px; /* Add space below the header */
}

.trends-header h3 {
    margin: 0; /* Remove default margin */
    font-size: 18px; /* Set font size */
}

.month-select {
    padding: 5px 10px; /* Add some padding to the select box */
    font-size: 14px; /* Set font size */
    border-radius: 5px; /* Round corners */
    border: 1px solid #ddd; /* Add border to the select box */
}


/* Conditions Card Style */
.conditions-card {
    flex: 1 1; /* Allow the conditions card to take available space */
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/* Conditions Card Header (Title + View All in a row) */
.conditions-header {
    display: flex;
    justify-content: space-between; /* Distribute space between the title and link */
    align-items: center; /* Vertically align the items */
    margin-bottom: 15px; /* Add space below the header */
}

.conditions-header h3 {
    margin: 0; /* Remove default margin */
    font-size: 18px; /* Set font size */
}

.view-all {
    font-size: 14px; /* Set font size */
    color: #3BA092; /* Set link color */
    text-decoration: none; /* Remove underline */
}

.view-all:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Container for condition items */
.condition-items {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Add space between items */
    margin-top: 20px; /* Add margin between the header and the items */
}

/* Style for each condition item */
.condition-item {
    background: #f0f0f0; /* Light gray background for each box */
    padding: 15px; /* Add padding inside the box */
    border-radius: 8px; /* Rounded corners */
    display: flex; /* Use flexbox for aligning icon and text */
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* Align items to the left */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    color: #333; /* Text color */
    border: 1px solid #ddd; /* Border for each condition item */
}


/* Icon and text in each condition item */
.condition-item i {
    margin-right: 10px; /* Add space between icon and text */
    font-size: 24px; /* Adjust icon size */
}

.condition-item p {
    margin: 0; /* Remove margin */
    font-size: 14px; /* Adjust text size */
    text-align: right; /* Right align the text inside <p> */
    flex-grow: 1; /* Make the <p> tag take the remaining space */
}


 /* #main-content {
   margin-left: 100px !important;
   margin-top: 50px !important;
   padding: 20px;
   flex-grow: 1;
   background-color: #ffffff;
   border-radius: 10px;
 } */
  #main-content-patient {
   margin-top: 100px;
   margin-left: 220px;
   padding: 20px;
   position: relative;
   z-index: 1;
  }
/* Navbar */
#navbar {
   display: flex;
   justify-content: space-between;
   height: 40px;
   align-items: center;
   background: #fff;
   padding: 15px 20px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   width: 100%;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 10;
}


#navbar-left {
   display: flex;
   align-items: center;
}


#logo-circle {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}


/* .logo-text {
   font-size: 20px;
   margin-left: 10px;
   display: flex;
   align-content: center;
} */


#mfu-text {
   margin-left: 10px;
   font-size: 20px;
   color: #3BA092;
   font-weight: bold;
   margin-right:5px;
}


#wellness-text {
   font-size: 20px;
   color: #C0B257;
   font-weight: bold;
}


#navbar-right {
   display: flex;
   align-items: center;
   margin-right: 40px;
}


#notification-btn:hover {
   background-color: #ffffff;
}


#icon {
   font-size: 20px;
   color: #333;
}


#notification-btn:focus {
   outline: none;
}


#notification-btn {
   background: none;
   border: none;
   cursor: pointer;
   padding: 10px;
   margin-right: 15px;
   transition: background-color 0.3s ease;
}


#profile {
   display: flex;
   align-items: center;
   margin-right: 10px;
}


#profile-image {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 10px;
}


#profile-name {
   margin-left: 5px;
   font-weight: bold;
   color: #333;
}
 /* Sidebar */
#sidebar {
   width: 159px;
   background: #fff;
   padding: 20px;
   display: flex;
   flex-direction: column;
   position: fixed;
   top: 70px;
   left: 0;
   bottom: 0;
   box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
   margin-right: 20px;
}


.sidebar-btn {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   outline: none;
   font-size: 14px;
   cursor: pointer;
   padding: 12px;
   display: flex;
   align-items: center;
   gap: 10px;
   transition: background 0.3s ease;
}


#sidebar-icon {
   width: 15px;
   height: 15px;
}


.sidebar-btn:hover {
   background: rgba(0, 0, 0, 0.05);
}


.sidebar-btn.logout {
   margin-top: auto;
}


.active-tab {
   background: #E0F2F1;
   color:black;
}


.sidebar-btn a {
   text-decoration: none;
   color: inherit;
}


.sidebar-btn a:hover {
   color: black;
}
  /* Main Content Styles */
 .table-container {
   margin-top: 70px;
   padding: 30px;
   background-color: #f5f5f5;
   min-height: calc(100vh - 70px);
   display: flex;
   flex-direction: column;
   margin-left: 250px;
   width: 120vh;
 }
  h1 {
   color: #242222;
   font-size: 24px;
   font-weight: 600;
   margin: 0;
 }
  /* Table Styles */
 .table-wrapper {
   background-color: white;
   border-radius: 8px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   overflow: hidden;
 }
  .table-content {
   width: 100%;
   border-collapse: collapse;
 }
  .table-content th {
   font-weight: 600;
   color: #242222;
   text-align: left;
   padding: 12px 16px;
   border-bottom: 1px solid #e0e0e0;
 }
  .table-content td {
   padding: 12px 16px;
   border-bottom: 1px solid #e0e0e0;
   color: #595959;
 }
  .table-content tr:last-child td {
   border-bottom: none;
 }
  .table-content tr:hover {
   background-color: #f9f9f9;
 }
  /* Button Styles */
 .uButton {
   background-color: #3BA092;
   color: white;
   border: none;
   padding: 8px 16px;
   border-radius: 8px;
   font-size: 14px;
   font-weight: 500;
   cursor: pointer;
   transition: background-color 0.3s;
 }
  .uButton:hover {
   background-color: #2A7E6C;
 }
  .pButton {
   background-color: #3BA092;
   color: white;
   border: none;
   padding: 8px 12px;
   border-radius: 4px;
   font-size: 14px;
   cursor: pointer;
   transition: background-color 0.3s;
   min-width: 80px;
 }
  .pButton:hover {
   background-color: #2A7E6C;
 }
  .pButton:disabled {
   background-color: #cccccc;
   cursor: not-allowed;
 }
  .cancel-button {
   background-color: white;
   color: #595959;
   border: 1px solid #cccccc;
   padding: 8px 16px;
   border-radius: 4px;
   font-size: 14px;
   cursor: pointer;
   transition: all 0.3s;
 }
  .cancel-button:hover {
   background-color: #f5f5f5;
 }
  .browse-button {
   background-color: #3BA092;
   color: white;
   border: none;
   padding: 8px 16px;
   border-radius: 4px;
   font-size: 14px;
   cursor: pointer;
   transition: background-color 0.3s;
 }
  .browse-button:hover {
   background-color: #2A7E6C;
 }
  .browse-button:disabled {
   background-color: #cccccc;
   cursor: not-allowed;
 }
  .add-patient-button {
   background-color: #3BA092;
   color: white;
   border: none;
   padding: 8px 16px;
   border-radius: 4px;
   font-size: 14px;
   cursor: pointer;
   transition: background-color 0.3s;
 }
  .add-patient-button:hover {
   background-color: #2A7E6C;
 }
  /* Modal Styles */
 :root {
   --header-height: 100px;
 }


 .modal-container1 {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   min-height: 100%;  /* match parent container height */
   background-color: rgba(0, 0, 0, 0.5);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 1001;
   max-height:-webkit-fit-content;
   max-height:fit-content;
 }
  .modal-container1 > div {
   background-color: white;
   border-radius: 8px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
   max-width: 90%;
   max-height: 80vh;
   overflow: hidden;
 }
  .container1 {
   margin-bottom: 20px;
 }
  .container1 h3 {
   margin-bottom: 15px;
   color: #242222;
 }
  /* Form Styles */
 input[type="text"],
 input[type="number"],
 input[type="date"],
 select {
   width: 90%;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 14px;
   color: #595959;
 }
  input[type="text"]:focus,
 input[type="number"]:focus,
 input[type="date"]:focus,
 select:focus {
   outline: none;
   border-color: #3BA092;
 }
  /* Drag and Drop Area */
 .border-2 {
   border-width: 2px;
 }
  .border-dashed {
   border-style: dashed;
 }
  .border-gray-300 {
   border-color: #d1d5db;
 }
  .border-blue-500 {
   border-color: #3b82f6;
 }
  .bg-blue-50 {
   background-color: #eff6ff;
 }
  /* Status Icons */
 .text-green-600 {
   color: #16a34a;
 }
  .text-amber-600 {
   color: #d97706;
 }
  .text-red-600 {
   color: #dc2626;
 }
  /* Pagination Styles */
 .flex.justify-end {
   justify-content: flex-end;
 }
  .gap-2 {
   gap: 8px;
 }
  /* Search and filter styles */
 #search-container-1 {
   display: flex;
   align-items: center;
   border: 0.5px solid #595959;
   border-radius: 10px;
   width: 200px;
   height: 2rem;
   padding: 0 0.75rem;
   margin-right: 1rem;
 }
  .search-icon-1 {
   color: #595959;
 }
  #search-input {
   margin-left: 0.5rem;
   border: none;
   outline: none;
   background-color: transparent;
   width: 50%;
   color: #969696;
 }
  #search-input::placeholder {
   color: #969696;
 }
  #filter-button-1 {
   display: flex;
   align-items: center;
   background-color: transparent;
   border: 1px solid #3BA092;
   border-radius: 10px;
   height: 2rem;
   padding: 0 1rem;
   font-size: 13px;
   color: white;
   background-color: #3BA092;
 }
  .filter-icon-1 {
   margin-right: 0.5rem;
   color: white;
 }
 /* Utility Classes */
 .hidden {
   display: none;
 }
  .cursor-not-allowed {
   cursor: not-allowed;
 }
  .opacity-50 {
   opacity: 0.5;
 }
  .text-center {
   text-align: center;
 }
  .text-left {
   text-align: left;
 }
  .text-right {
   text-align: right;
 }
  .mt-2 {
   margin-top: 8px;
 }
  .mb-2 {
   margin-bottom: 8px;
 }
  .mt-6 {
   margin-top: 24px;
 }
  .mb-6 {
   margin-bottom: 24px;
 }
  .mr-4 {
   margin-right: 16px;
 }
  .ml-2 {
   margin-left: 8px;
 }
  .ml-1 {
   margin-left: 4px;
 }
  .mr-2 {
   margin-right: 8px;
 }
  .p-4 {
   padding: 16px;
 }
  .p-1 {
   padding: 4px;
 }
  .p-2 {
   padding: 8px;
 }
  .px-4 {
   padding-left: 16px;
   padding-right: 16px;
 }
  .py-2 {
   padding-top: 8px;
   padding-bottom: 8px;
 }
  .px-3 {
   padding-left: 12px;
   padding-right: 12px;
 }
  .rounded-lg {
   border-radius: 8px;
 }
  .rounded-md {
   border-radius: 6px;
 }
  .rounded-full {
   border-radius: 9999px;
 }
  .w-full {
   width: 100%;
 }
  .max-w-lg {
   max-width: 32rem;
 }
  .\max-h-\[80vh\] {
   max-height: 80vh;
 }
  .flex {
   display: flex;
 }
  .flex-col {
   flex-direction: column;
 }
  .items-center {
   align-items: center;
 }
  .justify-between {
   justify-content: space-between;
 }
  .justify-center {
   justify-content: center;
 }
  .space-x-2 {
   margin-left: 8px;
 }
  .space-x-3 {
   margin-left: 12px;
 }
  .space-x-5 {
   margin-left: 20px;
 }
  .space-y-3 > * + * {
   margin-top: 12px;
 }
  .text-sm {
   font-size: 14px;
 }
  .text-xs {
   font-size: 12px;
 }
  .font-semibold {
   font-weight: 600;
 }
  .font-bold {
   font-weight: 700;
 }
  .outline-none {
   outline: 2px solid transparent;
   outline-offset: 2px;
 }
  .bg-white {
   background-color: white;
   padding: 20px;
 }
  .bg-gray-100 {
   background-color: #f3f4f6;
 }
  .hover\:bg-gray-50:hover {
   background-color: #f9fafb;
 }
  .hover\:bg-gray-200:hover {
   background-color: #e5e7eb;
 }
  .hover\:bg-blue-600:hover {
   background-color: #2563eb;
 }
  .hover\:text-gray-700:hover {
   color: #374151;
 }
  .hover\:text-red-700:hover {
   color: #b91c1c;
 }
  .\hover\:text-\[\#2A7E6C\]\:hover {
   color: #2A7E6C;
 }
  .border-b {
   border-bottom-width: 1px;
 }
  .border-gray-300 {
   border-color: #d1d5db;
 }
  .transition-colors {
   transition-property: background-color, border-color, color, fill, stroke;
   transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
   transition-duration: 150ms;
 }
  .duration-150 {
   transition-duration: 150ms;
 }
  .overflow-y-auto {
   overflow-y: auto;
 }
  .flex-1 {
   flex: 1 1;
 }
  /* Responsive Adjustments */
 @media (max-width: 768px) {
   .sidebar {
     width: 200px;
   }
  
   .table-container {
     margin-left: 200px;
   }
  
   .navbar {
     padding: 15px 20px;
   }
 }
  @media (max-width: 576px) {
   .sidebar {
     display: none; /* Hide sidebar on small screens */
   }
  
   .table-container {
     margin-left: 0;
     padding: 20px 15px;
   }
  
   .flex.justify-end {
     justify-content: center;
     flex-wrap: wrap;
   }
 }
 /* Footer button container */
.footer-buttons-container {
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-buttons-container > *:not(:last-child) {
  margin-right: 12px;
}

/* Upload CSV button */
.upload-csv-button {
  background-color: #3BA092;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.upload-csv-button:hover {
  background-color: #3BA092;
}

.upload-csv-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
/* Lab Footer button container */
.lab-footer-buttons-container {
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lab-footer-buttons-container > *:not(:last-child) {
  margin-right: 12px;
}

/* Upload Lab CSV button */
.upload-lab-csv-button {
  background-color: #3BA092;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.upload-lab-csv-button:hover {
  background-color: #3BA092;
}

/* Add Lab Data button */
.add-lab-data-button {
  background-color: #3BA092;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-lab-data-button:hover {
  background-color: #3BA092;
}

/* Disabled state for both buttons */
.upload-lab-csv-button.disabled,
.add-lab-data-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.upload-lab-csv-button.disabled:hover,
.add-lab-data-button.disabled:hover {
  background-color: #3BA092; /* Keep original color when disabled */
}
/* Lab Data Form Container */
.lab-data-form-container {
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #e0f2f1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.lab-form-header {
  margin-bottom: 24px;
}

.lab-form-title {
  color: #1a365d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lab-form-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #3BA092, #2A7E6C);
  border-radius: 2px;
}

.lab-form-divider {
  height: 2px;
  background: linear-gradient(90deg, #3BA092, #e0f2f1);
  border-radius: 1px;
  margin-top: 8px;
}

/* Basic Information Section */
.basic-info-section {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-field {
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}

.required-asterisk {
  color: #e53e3e;
  margin-left: 2px;
}

.input-wrapper,
.select-wrapper {
  position: relative;
}

.form-input {
  width: 90%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 3px rgba(59, 160, 146, 0.1);
  transform: translateY(-1px);
}

.form-input:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.form-input::placeholder {
  color: #a0aec0;
}

.hn-input:focus {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.form-select {
  width: 90%;
  /* padding: 12px 16px; */
  /* border: 2px solid #e2e8f0; */
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 44px;
}

.form-select:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 3px rgba(59, 160, 146, 0.1);
}

.form-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

/* Lab Tests Selection */
.lab-tests-section {
  margin-bottom: 28px;
}

.section-label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.025em;
}

.lab-tests-container {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lab-test-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f7fafc;
  transition: background-color 0.2s ease;
}

.lab-test-item:last-child {
  border-bottom: none;
}

.lab-test-item:hover {
  background-color: #f0fdf4;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}

.lab-test-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: #3BA092;
  cursor: pointer;
}

.lab-test-label {
  font-size: 14px;
  color: #2d3748;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  flex-grow: 1;
  font-weight: 500;
}

/* Lab Test Forms */
.lab-test-form {
  background: #ffffff;
  border: 2px solid #e0f2f1;
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lab-test-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.lab-test-header {
  background: linear-gradient(135deg, #3BA092, #2A7E6C);
  padding: 16px 20px;
  color: white;
}

.lab-test-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lab-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

@media (max-width: 768px) {
  .lab-items-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
}

.lab-item-field {
  position: relative;
}

.lab-item-label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.lab-item-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.lab-item-unit {
  color: #718096;
  font-size: 11px;
  font-weight: 500;
  margin-left: 4px;
}

.lab-item-input-wrapper {
  position: relative;
}

.lab-item-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  color: #2d3748;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lab-item-input:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 2px rgba(59, 160, 146, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  transform: translateY(-1px);
}

.lab-item-input:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.lab-item-input::placeholder {
  color: #cbd5e0;
  font-style: italic;
}

.lab-item-input:hover:not(:disabled) {
  border-color: #c6d3d1;
}

/* Scrollbar Styling */
.lab-tests-container::-webkit-scrollbar {
  width: 6px;
}

.lab-tests-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.lab-tests-container::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.lab-tests-container::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* Animation for new lab test forms */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lab-test-form {
  animation: slideInUp 0.3s ease-out;
}
/* Bulk Upload Container */
.bulk-upload-container {
  background: linear-gradient(135deg, #fefffe 0%, #f0fdfa 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid #d1fae5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Bulk Upload Header */
.bulk-upload-header {
  margin-bottom: 20px;
}

.bulk-upload-title {
  color: #1a365d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bulk-upload-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #3BA092, #065f46);
  border-radius: 2px;
}

.bulk-upload-divider {
  height: 2px;
  background: linear-gradient(90deg, #3BA092, #d1fae5);
  border-radius: 1px;
  margin-top: 8px;
}

/* Upload Zone */
.bulk-upload-zone {
  border: 3px dashed #cbd5e0;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bulk-upload-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.bulk-upload-zone:hover::before {
  left: 100%;
}

.bulk-upload-zone:hover {
  border-color: #3BA092;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(16, 185, 129, 0.15);
}

.bulk-upload-zone.drag-active {
  border-color: #3BA092;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  transform: scale(1.02);
  box-shadow: 0 12px 20px rgba(16, 185, 129, 0.2);
}

.bulk-upload-zone.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f7fafc;
  border-color: #e2e8f0;
}

.bulk-upload-zone.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Upload Icon */
.upload-icon-container {
  margin-bottom: 16px;
}

.upload-icon {
  width: 48px;
  height: 48px;
  color: #3BA092;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.bulk-upload-zone:hover .upload-icon {
  transform: translateY(-4px);
  color: #3BA092;
}

.bulk-upload-zone.drag-active .upload-icon {
  transform: scale(1.1) translateY(-4px);
  color: #3BA092;
}

/* Upload Content */
.upload-content {
  margin-bottom: 16px;
}

.upload-text {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}

.upload-browse-text {
  color: #3BA092;
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
}

.upload-browse-text:hover {
  -webkit-text-decoration-color: #3BA092;
          text-decoration-color: #3BA092;
}

.bulk-browse-button {
  background: linear-gradient(135deg, #3BA092, #3BA092);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bulk-browse-button:hover {
  background: linear-gradient(135deg, #3BA092, #3BA092);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}

.bulk-browse-button:active {
  transform: translateY(0);
}

.bulk-browse-button:disabled {
  background: #e2e8f0;
  color: #a0aec0;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.file-input-hidden {
  display: none;
}

/* Uploaded File Container */
.uploaded-file-container {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #3BA092;
  border-radius: 12px;
  animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uploaded-file-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.file-success-icon {
  width: 24px;
  height: 24px;
  color: #3BA092;
}

.uploaded-file-name {
  color: #3BA092;
  font-weight: 600;
  font-size: 14px;
}

.remove-file-button {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-file-button:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: scale(1.1);
}

/* Upload Info Section */
.upload-info-section {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3BA092;
}

.info-icon-container {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon {
  width: 16px;
  height: 16px;
  color: #3BA092;
}

.upload-info-text {
  color: #475569;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

/* Upload Error */
.upload-error-container {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 8px;
  border-left: 4px solid #ef4444;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-icon {
  width: 16px;
  height: 16px;
  color: #ef4444;
  flex-shrink: 0;
}

.upload-error-text {
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
}

/* Beautiful OR Divider */
.or-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.or-divider-line {
  flex: 1 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d1d5db 20%, #d1d5db 80%, transparent);
  position: relative;
}

.or-divider-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #3BA092 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.or-divider-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 3px solid #3BA092;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 2;
}

.or-divider-circle::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.or-divider-text {
  font-weight: 700;
  color: #3BA092;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .bulk-upload-container {
    padding: 20px;
    margin-bottom: 24px;
  }
  
  .bulk-upload-zone {
    padding: 32px 16px;
  }
  
  .upload-icon {
    width: 40px;
    height: 40px;
  }
  
  .upload-text {
    font-size: 14px;
  }
  
  .or-divider-circle {
    width: 50px;
    height: 50px;
    margin: 0 16px;
  }
  
  .or-divider-text {
    font-size: 12px;
  }
}
/* Modal Close Button */
.modal-close-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #6b7280;
}

.modal-close-button:hover {
  color: #374151;
  background-color: #f3f4f6;
  transform: scale(1.05);
}

.modal-close-button:active {
  transform: scale(0.95);
}

.modal-close-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 160, 146, 0.2);
}
/* Simple Patient Form Container */
.simple-patient-form-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

/* Simple Form Title */
.simple-patient-form-title {
  color: #374151;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Form Fields Container */
.simple-patient-form-fields {
  transition: opacity 0.3s ease;
}

.simple-patient-form-fields.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Form Row */
.simple-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .simple-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Form Field */
.simple-form-field {
  display: flex;
  flex-direction: column;
}

/* Form Label */
.simple-form-label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Form Input */
.simple-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.simple-form-input:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 1px #3BA092;
}

.simple-form-input:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

.simple-form-input::placeholder {
  color: #9ca3af;
}

/* Form Select */
.simple-form-select {
  width: 90%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.simple-form-select:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 1px #3BA092;
}

.simple-form-select:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-patient-form-container {
    padding: 20px;
  }
  
  .simple-patient-form-title {
    font-size: 16px;
  }
  
  .simple-form-input,
  .simple-form-select {
    padding: 8px 10px;
  }
}
/* Simple Bulk Upload Container */
.simple-bulk-upload-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

/* Bulk Upload Title */
.simple-bulk-upload-title {
  color: #374151;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Upload Zone */
.simple-upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  background: #fafafa;
  transition: all 0.2s ease;
}

.simple-upload-zone:hover {
  border-color: #3BA092;
  background: #f8fafc;
}

.simple-upload-zone.drag-active {
  border-color: #3BA092;
  background: #eff6ff;
}

.simple-upload-zone.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f3f4f6;
}

.simple-upload-zone.disabled:hover {
  border-color: #d1d5db;
  background: #f3f4f6;
}

/* Upload Text */
.simple-upload-text {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 16px;
}

/* Browse Button */
.simple-browse-button {
  background-color: #3BA092;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.simple-browse-button:hover {
  background-color: #3BA092;
}

.simple-browse-button:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}

/* Hidden File Input */
.simple-file-input-hidden {
  display: none;
}

/* File Info */
.simple-file-info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.simple-file-name {
  color: #3BA092;
  font-size: 14px;
  font-weight: 500;
}

.simple-remove-button {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.simple-remove-button:hover {
  color: #b91c1c;
}

/* Upload Note */
.simple-upload-note {
  color: #6b7280;
  font-size: 12px;
  margin-top: 8px;
}

/* OR Divider */
.simple-or-divider {
  text-align: center;
  margin: 24px 0;
}

.simple-or-text {
  color: #6b7280;
  font-size: 14px;
  background: #ffffff;
  padding: 0 12px;
  position: relative;
}

.simple-or-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  right: 100%;
  height: 1px;
  background: #e5e7eb;
  z-index: -1;
}

.simple-or-text::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  right: -100px;
  height: 1px;
  background: #e5e7eb;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-bulk-upload-container {
    padding: 20px;
  }
  
  .simple-upload-zone {
    padding: 24px 16px;
  }
  
  .simple-upload-text {
    font-size: 14px;
  }
}
/* Navbar */
#navbar {
   display: flex;
   justify-content: space-between;
   height: 40px;
   align-items: center;
   background: #fff;
   padding: 15px 20px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   width: 100%;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 10;
}


#navbar-left {
   display: flex;
   align-items: center;
}


#logo-circle {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}


/* .logo-text {
   font-size: 20px;
   margin-left: 10px;
   display: flex;
   align-content: center;
} */


#mfu-text {
   margin-left: 10px;
   font-size: 20px;
   color: #3BA092;
   font-weight: bold;
   margin-right:5px;
}


#wellness-text {
   font-size: 20px;
   color: #C0B257;
   font-weight: bold;
}


#navbar-right {
   display: flex;
   align-items: center;
   margin-right: 40px;
}


#notification-btn:hover {
   background-color: #ffffff;
}


#icon {
   font-size: 20px;
   color: #333;
}


#notification-btn:focus {
   outline: none;
}


#notification-btn {
   background: none;
   border: none;
   cursor: pointer;
   padding: 10px;
   margin-right: 15px;
   transition: background-color 0.3s ease;
}


#profile {
   display: flex;
   align-items: center;
   margin-right: 10px;
}


#profile-image {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 10px;
}


#profile-name {
   margin-left: 5px;
   font-weight: bold;
   color: #333;
}
 /* Sidebar */
#sidebar {
   width: 159px;
   background: #fff;
   padding: 20px;
   display: flex;
   flex-direction: column;
   position: fixed;
   top: 70px;
   left: 0;
   bottom: 0;
   box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
   margin-right: 20px;
}


.sidebar-btn {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   outline: none;
   font-size: 14px;
   cursor: pointer;
   padding: 12px;
   display: flex;
   align-items: center;
   gap: 10px;
   transition: background 0.3s ease;
}


#sidebar-icon {
   width: 15px;
   height: 15px;
}


.sidebar-btn:hover {
   background: rgba(0, 0, 0, 0.05);
}


.sidebar-btn.logout {
   margin-top: auto;
}


.active-tab {
   background: #E0F2F1;
   color:black;
}


.sidebar-btn a {
   text-decoration: none;
   color: inherit;
}


.sidebar-btn a:hover {
   color: black;
}
/* Base Styles */
/* Main content positioning matching patients.css */
#main-content-patient-details-container {
  margin-top: 100px;
  margin-left: 220px;
  padding: 20px;
  position: relative;
  z-index: 1;
  background-color: #f5f5f5;
  min-height: calc(100vh - 100px);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  background-color: #f5f5f5;
  min-height: 100vh;
}


  /* Header Section */
  .header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .back-button {
    display: flex;
    align-items: center;
    color: #3BA092;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .back-button:hover {
    color: #2A7E6C;
  }
  
  .edit-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #3BA092;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  
  .edit-button:hover {
    background-color: #2A7E6C;
  }
  
  .edit-actions {
    display: flex;
    gap: 8px;
  }
  
  .cancel-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #dc2626;
    color: #dc2626;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .cancel-button:hover {
    background-color: #fee2e2;
  }
  
  .save-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #3BA092;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  
  .save-button:hover {
    background-color: #2A7E6C;
  }
  
  .save-error {
    color: #dc2626;
    margin-top: 8px;
    font-size: 14px;
  }
  
  /* Patient Details Card */
  .patient-details-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .section {
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #242222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
  }
  
  /* Info Grid */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
    gap: 24px;
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
  }
  
  @media (min-width: 768px) {
    .info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .info-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .info-label {
    font-size: 14px;
    color: #64748b;
  }
  
  .info-value {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
  }
  
  .info-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  .info-input:focus {
    outline: none;
    border-color: #3BA092;
  }
  
  /* Lab Tests Section */
  .test-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .test-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .test-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8fafc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .test-header:hover {
    background-color: #f1f5f9;
  }
  
  .test-title {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .test-name {
    font-size: 18px;
    font-weight: 500;
    color: #242222;
  }
  
  .test-date {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .date-text {
    font-size: 14px;
    color: #64748b;
  }
  
  .test-results {
    padding: 16px;
  }
  
  .results-table-container {
    overflow-x: auto;
  }
  
  .results-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .results-table th,
  .results-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .results-table th {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    background-color: #f8fafc;
  }
  
  .results-table td {
    font-size: 14px;
    color: #334155;
  }
  
  .result-value {
    font-weight: 500;
    color: #242222;
  }
  
  .status-indicator {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .status-indicator.normal {
    background-color: #dcfce7;
    color: #166534;
  }
  
  .status-indicator.abnormal {
    background-color: #fee2e2;
    color: #991b1b;
  }
  
  .no-data-text,
  .no-results-text {
    color: #64748b;
    font-size: 14px;
  }
  
  /* Appointments Section */
  .appointment-group {
    margin-bottom: 24px;
  }
  
  .appointment-group-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8fafc;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .appointment-group-header:hover {
    background-color: #f1f5f9;
  }
  
  .group-title {
    font-size: 16px;
    font-weight: 500;
    color: #242222;
  }
  
  .appointment-table-container {
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
  }
  
  .appointment-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .appointment-table th,
  .appointment-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .appointment-table th {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    background-color: #f8fafc;
  }
  
  .appointment-table td {
    font-size: 14px;
    color: #334155;
  }
  
  /* Status Badge */
  .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .bg-amber-100 {
    background-color: #fef3c7;
  }
  
  .text-amber-800 {
    color: #92400e;
  }
  
  .bg-green-100 {
    background-color: #dcfce7;
  }
  
  .text-green-800 {
    color: #166534;
  }
  
  .bg-red-100 {
    background-color: #fee2e2;
  }
  
  .text-red-800 {
    color: #991b1b;
  }
  
  .bg-blue-100 {
    background-color: #dbeafe;
  }
  
  .text-blue-800 {
    color: #1e40af;
  }
  
  .bg-purple-100 {
    background-color: #f3e8ff;
  }
  
  .text-purple-800 {
    color: #6b21a8;
  }
  
  .bg-gray-100 {
    background-color: #f3f4f6;
  }
  
  .text-gray-800 {
    color: #1f2937;
  }
  
  /* Loading and Error States */
  .loading-message,
  .no-data-message {
    text-align: center;
    padding: 40px 0;
    color: #64748b;
  }
  
  .error-message {
    text-align: center;
    padding: 40px 0;
    color: #dc2626;
  }
/* #main-content {
    margin-left: 100px !important;
    margin-top: 50px !important;
    padding: 20px;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 10px;
  } */
   #main-content-appointment {
    margin-top: 100px;
    margin-left: 220px;
    padding: 20px;
    position: relative;
    z-index: 1;
   }
/* Search and filter styles */
  #search-container-1 {
     display: flex;
    align-items: center;
    border: 0.5px solid #595959;
    border-radius: 10px;
    width: 200px;
    height: 2rem;
    padding: 0 0.75rem;
    margin-right: 1rem;
  }
  
  #search-icon-1 {
    color: #969696;
  }
  
  #search-input {
    margin-left: 0.5rem;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    color: #969696;
  }
  
  #search-input::placeholder {
    color: #969696;
  }
  
  #filter-button {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #3BA092;
    border-radius: 9999px;
    width: 158px;
    height: 2rem;
    padding: 0 1rem;
    font-size: 0.75rem;
    color: #969696;
  }
  
  .filter-icon {
    margin-right: 0.5rem;
    color: #3BA092;
  }
  /* Pagination styles */
.pagination-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  gap: 0.5rem;
  flex-wrap: wrap; /* optional: make buttons wrap on small screens */
}

.pButton {
  padding: 0.5rem 1rem;
  background-color: #3BA092;
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pButton:hover {
  background-color: #2c8a7d;
}

.pButton:disabled {
  background-color: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
}

  .action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.icon-button:hover {
  opacity: 0.8;
}

.icon-green {
  color: #22c55e; /* Tailwind green-500 */
  width: 20px;
  height: 20px;
}

.icon-red {
  color: #ef4444; /* Tailwind red-500 */
  width: 20px;
  height: 20px;
}

.icon-blue {
  color: #3b82f6; /* Tailwind blue-500 */
  width: 20px;
  height: 20px;
}
.stats-scroll-container {
  overflow-x: auto;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  min-width: 900px;
  margin-bottom: 1.5rem;
}

.stats-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stats-card-content {
  padding: 1rem;
  text-align: center;
}

.stats-card-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #374151; /* Tailwind gray-700 */
}

.stats-card-label {
  font-size: 0.875rem;
  color: #6b7280; /* Tailwind gray-500 */
}
.reschedule-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); /* Removed blur */
}

.modal-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  min-width: 300px;
  z-index: 60;

  display: flex;
  flex-direction: column;
  max-height: 80vh;       /* limit height relative to viewport */
  overflow: hidden;       /* prevent outside overflow */
}

.modal-header {
  flex-shrink: 0;         /* don’t shrink */
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.modal-footer {
  flex-shrink: 0;         /* don’t shrink */
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.modal-body {
  flex: 1 1;                /* take remaining space */
  min-height: 0;          /* allow flexbox scrolling */
  overflow-y: auto;       /* enable scrolling */
  padding: 24px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

.modal-close .icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  cursor: pointer;
}

.modal-close:hover .icon {
  color: #4b5563;
}



.section {
  margin-bottom: 16px;
}

.section-title {
  font-weight: 600;
  color: #1f2937;
}

.section-subtitle,
.section-label {
  color: #6b7280;
  margin-bottom: 4px;
}

.date-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #1f2937;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  gap: 8px;
}

.time-slot {
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
}

.time-slot:hover {
  background-color: #f9fafb;
}

.time-slot.selected {
  background-color: #dbeafe;
  color: #3BA092;
  border-color: #93c5fd;
}

.no-slots {
  color: #6b7280;
}

.btn-cancel {
  padding: 8px 16px;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-cancel:hover {
  color: #1f2937;
}

.btn-confirm {
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #3BA092;
  color: white;
  border: none;
  cursor: pointer;
}

.btn-confirm:hover {
  background-color: #1b6359;
}

.btn-confirm.disabled {
  background-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;    /* vertical centering */
  justify-content: center;/* horizontal centering */
  z-index: 9999;
}

.modal-container {
  display: flex;
  flex-direction: column;
  width: 600px;
  max-height: 70vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 2rem;           /* keeps it away from screen edges */
}

.modal-header {
 padding: 0.5rem 1rem; 
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.modal-body {
  overflow-y: auto;
  flex: 1 1;
  padding: 1rem;
}

.modal-footer {
  padding: 1rem;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  text-align: right;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}
.modal-container .close-btn-1 {
   background: none;
  border: 1px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.modal-container .close-btn-1:hover {
  background: #e3e8e8;
  border-color: 1px solid #e2e8f0;
  color: #64748b;
  transform: scale(1.05);
}

.modal-container .close-btn-1:active {
  transform: scale(0.95);
}
/* Scrollable Department Form */
.scrollable-department-form {
  display: flex;
  flex-direction: column;
  height: 500px;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Form Scroll Container */
.form-scroll-container {
  flex: 1 1;
  overflow-y: auto;
  padding: 24px;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
.form-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.form-scroll-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.form-scroll-container::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.form-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Form Group */
.scrollable-form-group {
  margin-bottom: 20px;
  animation: fadeInUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.scrollable-form-group:nth-child(1) { animation-delay: 0.1s; }
.scrollable-form-group:nth-child(2) { animation-delay: 0.2s; }
.scrollable-form-group:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Label */
.scrollable-form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}

/* Form Input */
.scrollable-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.scrollable-form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.scrollable-form-input::placeholder {
  color: #9ca3af;
}

/* Image Upload Container */
.scrollable-image-upload-container {
  position: relative;
  margin-top: 8px;
}

/* Hidden File Input */
.scrollable-file-input-hidden {
  display: none;
}

/* Image Upload Area */
.scrollable-image-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.scrollable-image-upload-area:hover {
  border-color: #3BA092;
  background: linear-gradient(135deg, #eff6ff 0%, #ecf8f7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.15);
}

/* Image Preview */
.scrollable-image-preview {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.scrollable-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay */
.scrollable-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.scrollable-image-preview:hover .scrollable-image-overlay {
  opacity: 1;
}

/* Overlay Content */
.scrollable-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scrollable-overlay-text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

/* Upload Placeholder */
.scrollable-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.scrollable-upload-icon {
  color: #6b7280;
  margin-bottom: 8px;
}

.scrollable-upload-text {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.scrollable-upload-subtext {
  color: #9ca3af;
  font-size: 12px;
}

/* File Info */
.scrollable-file-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #10b981;
  border-radius: 6px;
  animation: slideInUp 0.3s ease;
}

.scrollable-file-name {
  color: #065f46;
  font-size: 13px;
  font-weight: 500;
}

.scrollable-file-remove {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.scrollable-file-remove:hover {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.1);
}

/* Fixed Footer */
.form-footer-fixed {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Submit Button */
.scrollable-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #3BA092, #3BA092);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.scrollable-submit-btn:hover {
  background: linear-gradient(135deg, #3BA092, #3BA092);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.scrollable-submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading Content */
.loading-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

.spinner-circle {
  opacity: 0.25;
}

.spinner-path {
  opacity: 0.75;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .scrollable-department-form {
    height: 450px;
  }
  
  .form-scroll-container {
    padding: 20px;
  }
  
  .scrollable-image-upload-area {
    height: 120px;
  }
  
  .form-footer-fixed {
    padding: 16px 20px;
  }
}

/* Doctor Details Specific Styles */

/* Main Container */
#main-content-docotor-details {
  margin-left: 200px !important;
  margin-top: 50px !important;
  padding: 20px;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 10px;
}

/* Back Button */
.doctor-details-container .back-button {
  display: flex;
  align-items: center;
  color: #3ba092;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s;
}

.doctor-details-container .back-button:hover {
 color: #2a7e6c;
}



.back-button:hover {
  color: #2a7e6c;
}

.doctor-details-container .back-button-icon {
  font-size: 16px;
}

/* Loading and Error States */
.doctor-details-container .loading-state,
.doctor-details-container .error-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 16px;
  color: #6c757d;
}

.doctor-details-container .error-state {
  color: #dc3545;
}

/* Detail Card */
.doctor-details-container .detail-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Profile Header */
.doctor-details-container .profile-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid #e9ecef;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Profile Image Container */
.doctor-details-container .profile-image-container {
  position: relative;
  flex-shrink: 0;
}

.doctor-details-container .profile-image-wrapper {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.doctor-details-container .profile-image-wrapper:hover {
  transform: translateY(-2px);
}

.doctor-details-container .profile-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.doctor-details-container .profile-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.doctor-details-container .profile-image-wrapper:hover .profile-image-overlay {
  opacity: 1;
}

.doctor-details-container .upload-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.doctor-details-container .remove-image-button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.doctor-details-container .remove-image-button:hover {
  background: #c82333;
}

.doctor-details-container .hidden {
  display: none;
}

/* Profile Info */
.doctor-details-container .profile-info {
  flex-grow: 1;
}

.doctor-details-container .doctor-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #212529;
}

.doctor-details-container .doctor-specialization {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 16px;
  font-weight: 500;
}

.doctor-details-container .contact-info p {
  margin: 4px 0;
  color: #495057;
  font-size: 14px;
}

/* Card Section */
.doctor-details-container .card-section {
  padding: 32px;
}

.doctor-details-container .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.doctor-details-container .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
}

.doctor-details-container .add-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #3BA092;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.doctor-details-container .add-button:hover {
  background: #2a8074;
}

/* Schedule Table */
.doctor-details-container .schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.doctor-details-container .schedule-row {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.doctor-details-container .schedule-row:hover {
  background-color: #f8f9fa;
}

.doctor-details-container .schedule-row:last-child {
  border-bottom: none;
}

.doctor-details-container .schedule-day,
.doctor-details-container .schedule-times,
.doctor-details-container .schedule-actions {
  padding: 16px;
  vertical-align: middle;
}

.doctor-details-container .schedule-day {
  font-weight: 600;
  color: #495057;
  width: 30%;
}

.doctor-details-container .schedule-times {
  color: #6c757d;
  width: 50%;
}

.doctor-details-container .schedule-actions {
  width: 20%;
}

.doctor-details-container .action-buttons {
  display: flex;
  gap: 8px;
}

.doctor-details-container .icon-button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.doctor-details-container .icon-button.text-blue-500 {
  background: #e3f2fd;
  color: #3BA092;
}

.doctor-details-container .icon-button.text-blue-500:hover {
  background: #bbdefb;
  color: #3BA092;
}

.doctor-details-container .icon-button.text-red-500 {
  background: #ffebee;
  color: #d32f2f;
}

.doctor-details-container .icon-button.text-red-500:hover {
  background: #ffcdd2;
  color: #c62828;
}

/* Empty State */
.doctor-details-container .empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #6c757d;
  font-style: italic;
}

/* Modal Styles */
.doctor-details-container .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.doctor-details-container .modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.doctor-details-container .modal-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.doctor-details-container .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.doctor-details-container .modal-body {
  padding: 24px;
}

.doctor-details-container .form-group {
  margin-bottom: 20px;
}

.doctor-details-container .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.doctor-details-container .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.doctor-details-container .form-control:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.doctor-details-container .form-control:hover {
  border-color: #9ca3af;
}

.doctor-details-container .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.doctor-details-container .form-col {
  flex: 1 1;
}

.doctor-details-container .info-box {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.doctor-details-container .info-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.doctor-details-container .info-icon {
  color: #3BA092;
  font-size: 16px;
  margin-right: 8px;
}

.doctor-details-container .info-title {
  color: #3BA092;
  font-weight: 500;
  font-size: 14px;
}

.doctor-details-container .info-text {
  color: #3BA092;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.doctor-details-container .error-box {
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.doctor-details-container .error-text {
  color: #b91c1c;
  font-size: 14px;
  margin: 0;
}

.doctor-details-container .error-label {
  font-weight: 600;
  margin-right: 4px;
}

.doctor-details-container .warning-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.doctor-details-container .warning-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.doctor-details-container .warning-icon {
  color: #f87171;
  font-size: 16px;
  margin-right: 8px;
}

.doctor-details-container .warning-title {
  color: #991b1b;
  font-weight: 500;
  font-size: 14px;
}

.doctor-details-container .warning-text {
  color: #dc2626;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.doctor-details-container .modal-footer {
  padding: 20px 24px 24px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
}

.doctor-details-container .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 100px;
}

.doctor-details-container .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.doctor-details-container .btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.doctor-details-container .btn-secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.doctor-details-container .btn-primary {
  background: #3BA092;
  color: white;
}

.doctor-details-container .btn-primary:hover {
  background: #3BA092;
}

.doctor-details-container .btn-danger {
  background: #dc2626;
  color: white;
}

.doctor-details-container .btn-danger:hover {
  background: #b91c1c;
}

.doctor-details-container .btn-success {
  background: #059669;
  color: white;
}

.doctor-details-container .btn-success:hover {
  background: #047857;
}

.doctor-details-container .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.doctor-details-container .btn-loading {
  position: relative;
  color: transparent;
}

.doctor-details-container .btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Custom Select Styling */
.doctor-details-container select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%236b7280%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.doctor-details-container select.form-control:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%233b82f6%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
}

/* Time Input Styling */
.doctor-details-container input[type="time"].form-control {
  position: relative;
}

/* Legacy utility classes for compatibility */
.doctor-details-container .fixed {
  position: fixed;
}
.doctor-details-container .inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.doctor-details-container .flex {
  display: flex;
}
.doctor-details-container .items-center {
  align-items: center;
}
.doctor-details-container .justify-center {
  justify-content: center;
}
.doctor-details-container .z-50 {
  z-index: 50;
}
.doctor-details-container .bg-white {
  background-color: white;
}
.doctor-details-container .rounded-lg {
  border-radius: 8px;
}
.doctor-details-container .p-6 {
  padding: 24px;
}
.doctor-details-container .max-w-md {
  max-width: 28rem;
}
.doctor-details-container .w-full {
  width: 100%;
}
.doctor-details-container .text-xl {
  font-size: 1.25rem;
}
.doctor-details-container .font-semibold {
  font-weight: 600;
}
.doctor-details-container .mb-4 {
  margin-bottom: 1rem;
}
.doctor-details-container .mb-2 {
  margin-bottom: 0.5rem;
}
.doctor-details-container .text-black {
  color: #000;
}
.doctor-details-container .text-gray-700 {
  color: #374151;
}
.doctor-details-container .text-gray-600 {
  color: #4b5563;
}
.doctor-details-container .text-gray-500 {
  color: #6b7280;
}
.doctor-details-container .text-gray-800 {
  color: #1f2937;
}
.doctor-details-container .block {
  display: block;
}
.doctor-details-container .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.doctor-details-container .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.doctor-details-container .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.doctor-details-container .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.doctor-details-container .border {
  border-width: 1px;
  border-color: #d1d5db;
}
.doctor-details-container .rounded-md {
  border-radius: 6px;
}
.doctor-details-container .w-1\/2 {
  width: 50%;
}
.doctor-details-container .space-x-4 > * + * {
  margin-left: 1rem;
}
.doctor-details-container .justify-between {
  justify-content: space-between;
}
.doctor-details-container .text-white {
  color: white;
}
.doctor-details-container .cursor-not-allowed {
  cursor: not-allowed;
}
.doctor-details-container .relative {
  position: relative;
}
.doctor-details-container .font-bold {
  font-weight: 700;
}
.doctor-details-container .font-medium {
  font-weight: 500;
}
.doctor-details-container .text-sm {
  font-size: 0.875rem;
}
.doctor-details-container .mr-2 {
  margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #main-content-docotor-details {
    margin-left: 0 !important;
    margin-top: 70px !important;
    padding: 16px;
  }

  .doctor-details-container .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .doctor-details-container .profile-image {
    width: 100px;
    height: 100px;
  }

  .doctor-details-container .doctor-name {
    font-size: 24px;
  }

  .doctor-details-container .card-section {
    padding: 24px 16px;
  }

  .doctor-details-container .card-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .doctor-details-container .schedule-table {
    font-size: 14px;
  }

  .doctor-details-container .schedule-day,
  .doctor-details-container .schedule-times,
  .doctor-details-container .schedule-actions {
    padding: 12px 8px;
  }

  .doctor-details-container .action-buttons {
    flex-direction: column;
    gap: 4px;
  }

  .doctor-details-container .max-w-md {
    max-width: calc(100vw - 32px);
    margin: 16px;
  }
}

/* #main-content {
    margin-left: 100px !important;
    margin-top: 50px !important;
    padding: 20px;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 10px;
  } */
   #main-content-dashboard {
    margin-top: 100px;
    margin-left: 220px;
    padding: 20px;
    position: relative;
    z-index: 1;
   }
/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#navbar-left {
    display: flex;
    align-items: center;
}

#logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}

/* .logo-text {
    font-size: 20px;
    margin-left: 10px;
    display: flex;
    align-content: center;
} */

#mfu-text {
    margin-left: 10px;
    font-size: 20px;
    color: #3BA092;
    font-weight: bold;
    margin-right:5px;
}

#wellness-text {
    font-size: 20px;
    color: #C0B257;
    font-weight: bold;
}

#navbar-right {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

#notification-btn:hover {
    background-color: #ffffff;
}

#icon {
    font-size: 20px;
    color: #333;
}

#notification-btn:focus {
    outline: none;
}

#notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

#profile {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

#profile-name {
    margin-left: 5px;
    font-weight: bold;
    color: #333;
}
/* Container for Sidebar and Main Content */
.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

/* Sidebar */
#sidebar {
    width: 159px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.sidebar-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

#sidebar-icon {
    width: 15px;
    height: 15px;
}

.sidebar-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-btn.logout {
    margin-top: auto;
}

.active-tab {
    background: #E0F2F1;
    color:black;
}

.sidebar-btn a {
    text-decoration: none;
    color: inherit;
}

.sidebar-btn a:hover {
    color: black;
}
/* Main Content
#main-content {
    margin-left: 200px !important;
    margin-top: 100px !important;
    padding: 20px;
    flex-grow: 1;
} */
.health-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    /*margin-top: 10px; /* 🧠 push below navbar */
  }
  
  /* Card Styling */
  .health-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1 1 200px;
    max-width: 250px;
    min-width: 200px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    
  }

  .health-card .card-top{
    width: 100%;
    display: flex;
    align-items: center;
  }

  .health-card .card-bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

 .number, .info{
    width:100%;

 }
  
  /* Header row */
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  /* Label Text */
  .label {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    flex:1 1;
  }
  
  /* Icon */
  .health-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  
  /* Card Body Content */
  .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ✅ left align */
    gap: 4px;
  }
  
  /* Big Number */
  /* .card-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  } */
  
  /* Status text (under h3, left aligned) */
  /* .card-body .status {
    margin: 0;
    font-size: 12px;
    color: inherit;
    text-align: left;
  } */
  
  /* Color overrides */
  .total-patients .info {
    color: #3E3EB4;
  }
  .critical-cases .info {
    color: #A42723;
  }
  .appointments .info {
    color: #6C2F94;
  }
  .lab-results .info {
    color: #ff9800;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .health-overview {
      flex-direction: column;
      align-items: center;
    }
  
    .health-card {
      max-width: 100%;
    }
  } 
    /*patient*/
.patient-list-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 300px;
    margin-top: 20px;
    border: 1px solid #ddd;
    height: 100%; /* Ensure card takes up available height */
    display: flex;
    flex-direction: column;
}

.patient-header {
    display: flex;
    justify-content: space-between; /* Align title and controls with space between */
    align-items: center; /* Vertically center content */
    margin-bottom: 15px;
}

.patient-header h3 {
    flex: 0 1 auto; /* Allow shrinking */
    white-space: nowrap; /* Prevent line break */
    display: inline-block; /* Avoid block-level wrapping */
    margin-right: 10px; /* Space between title and controls */
}

.patient-controls {
    display: flex;
    align-items: center; /* Vertically center the search bar and button */
    gap: 10px; /* Space between the input and button */
    justify-content: flex-end; /* Align controls to the right */
    width: 100%; /* Take up the remaining width of the header */
}

.patient-controls input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 200px; /* Set a width for the search bar */
}

.patient-controls .filter-btn {
    padding: 8px 12px;
    background-color: #3BA092;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px; /* Ensure text size is consistent */
    align-items: center; /* Align icon and text in the center */
    gap: 5px; /* Space between icon and text */
}
.filter-btn img {
    width: 18px; /* Adjust icon size */
    height: 18px;
    display: inline-block; /* Prevent any misalignment */
    vertical-align: middle; /* Align with text */
}
.patient-controls .filter-btn:hover {
    background-color: #287e72;
}

.table-container {
    flex-grow: 1; /* Make the table container take the remaining height */
    overflow-y: auto; /* Enable scrolling if content exceeds the available space */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f1f1f1;
}

.view-btn:hover {
    background-color: #218838;
}


/* Container for health trends and conditions cards */
.health-trends-container {
    display: flex;
    justify-content: space-between; /* Distribute the space between the cards */
    gap: 20px; /* Add some space between the cards */
    flex-wrap: wrap; /* Allow wrapping if the screen size is smaller */
}

/* Trends Card Style */
.trends-card {
    flex: 1 1; /* Allow the trends card to take available space */
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/* Trends Card Header (Title + Month Select in a row) */
.trends-header {
    display: flex;
    justify-content: space-between; /* Distribute space between the title and select */
    align-items: center; /* Vertically align the items */
    margin-bottom: 15px; /* Add space below the header */
}

.trends-header h3 {
    margin: 0; /* Remove default margin */
    font-size: 18px; /* Set font size */
}

.month-select {
    padding: 5px 10px; /* Add some padding to the select box */
    font-size: 14px; /* Set font size */
    border-radius: 5px; /* Round corners */
    border: 1px solid #ddd; /* Add border to the select box */
}


/* Conditions Card Style */
.conditions-card {
    flex: 1 1; /* Allow the conditions card to take available space */
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/* Conditions Card Header (Title + View All in a row) */
.conditions-header {
    display: flex;
    justify-content: space-between; /* Distribute space between the title and link */
    align-items: center; /* Vertically align the items */
    margin-bottom: 15px; /* Add space below the header */
}

.conditions-header h3 {
    margin: 0; /* Remove default margin */
    font-size: 18px; /* Set font size */
}

.view-all {
    font-size: 14px; /* Set font size */
    color: #3BA092; /* Set link color */
    text-decoration: none; /* Remove underline */
}

.view-all:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Container for condition items */
.condition-items {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Add space between items */
    margin-top: 20px; /* Add margin between the header and the items */
}

/* Style for each condition item */
.condition-item {
    background: #f0f0f0; /* Light gray background for each box */
    padding: 15px; /* Add padding inside the box */
    border-radius: 8px; /* Rounded corners */
    display: flex; /* Use flexbox for aligning icon and text */
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* Align items to the left */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

/* Icon and text in each condition item */
.condition-item i {
    margin-right: 10px; /* Add space between icon and text */
    font-size: 24px; /* Adjust icon size */
}

.condition-item p {
    margin: 0; /* Remove margin */
    font-size: 14px; /* Adjust text size */
    text-align: right; /* Right align the text inside <p> */
    flex-grow: 1; /* Make the <p> tag take the remaining space */
}
/* Department Details Specific Styles */

/* Main Container */
#main-content-department-details {
  margin-left: 200px !important;
  margin-top: 50px !important;
  padding: 20px;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 10px;
}

/* Back Button */
.department-details-container .back-button {
  display: flex;
  align-items: center;
  color: #3ba092;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s;
}

.department-details-container .back-button:hover {
  color: #2a7e6c;
}

.department-details-container .back-button-icon {
  font-size: 16px;
}

/* Loading and Error States */
.department-details-container .loading-state,
.department-details-container .error-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 16px;
  color: #6c757d;
}

.department-details-container .error-state {
  color: #dc3545;
}

/* Detail Card */
.department-details-container .detail-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Profile Header */
.department-details-container .profile-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid #e9ecef;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Profile Image Container */
.department-details-container .profile-image-container {
  position: relative;
  flex-shrink: 0;
}

.department-details-container .profile-image-wrapper {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.department-details-container .profile-image-wrapper:hover {
  transform: translateY(-2px);
}

.department-details-container .profile-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.department-details-container .profile-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.department-details-container .profile-image-wrapper:hover .profile-image-overlay {
  opacity: 1;
}

.department-details-container .upload-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.department-details-container .remove-image-button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.department-details-container .remove-image-button:hover {
  background: #c82333;
}

.department-details-container .hidden {
  display: none;
}

/* Profile Info */
.department-details-container .profile-info {
  flex-grow: 1;
}

.department-details-container .doctor-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #212529;
}

.department-details-container .doctor-specialization {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 16px;
  font-weight: 500;
}

.department-details-container .contact-info p {
  margin: 4px 0;
  color: #495057;
  font-size: 14px;
}

/* Card Section */
.department-details-container .card-section {
  padding: 32px;
}

.department-details-container .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.department-details-container .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
}

.department-details-container .add-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #3BA092;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.department-details-container .add-button:hover {
  background: #3BA092;
}

/* Doctor Cards Grid */
.department-details-container .grid {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.department-details-container .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.department-details-container .doctor-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  background: white;
  transition: all 0.2s ease;
}

.department-details-container .doctor-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.department-details-container .doctor-card-name {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}

.department-details-container .doctor-card-info {
  margin-top: 8px;
  font-size: 14px;
}

.department-details-container .doctor-card-info p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #495057;
}

.department-details-container .doctor-card-info .info-icon {
  color: #0d9488;
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}

.department-details-container .doctor-card-info .info-label {
  color: #6c757d;
  margin-right: 4px;
}

.department-details-container .doctor-card-info a {
  color: #0d9488;
  text-decoration: underline;
}

.department-details-container .doctor-card-info a:hover {
  color: #0f766e;
}

/* Empty State */
.department-details-container .empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #6c757d;
  font-style: italic;
}

/* Modal Styles */
/* .department-details-container .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
} */

/* .department-details-container .modal-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
} */

/* .department-details-container .modal-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
} */

/* .department-details-container .modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  flex: 1;
  padding-right: 16px;
} */

.department-details-container .close-btn-1 {
  background: none;
  border: 1px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.department-details-container .close-btn-1:hover {
  background: #e3e8e8;
  border-color: 1px solid #e2e8f0;
  color: #64748b;
  transform: scale(1.05);
}

.department-details-container .close-btn-1:active {
  transform: scale(0.95);
}

/* .department-details-container .modal-form {
  padding: 24px;
} */

.department-details-container .form-group {
  margin-bottom: 20px;
}

.department-details-container .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.department-details-container .form-group input,
.department-details-container .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.department-details-container .form-group input:focus,
.department-details-container .form-group select:focus {
  outline: none;
  border-color: #3BA092;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.department-details-container .form-group input:hover,
.department-details-container .form-group select:hover {
  border-color: #9ca3af;
}

.department-details-container .form-group input::placeholder {
  color: #9ca3af;
}

.department-details-container .submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: #3BA092;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.department-details-container .submit-btn:hover:not(:disabled) {
  background: #2c796f;
}

.department-details-container .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.department-details-container .submit-btn:disabled {
  background: #94a3b8;
}

/* Custom Select Styling */
.department-details-container select.form-group input,
.department-details-container select.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%236b7280%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.department-details-container select.form-group input:focus,
.department-details-container select.form-group select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%233b82f6%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
}

/* Error Alert Styles */
.department-details-container .bg-red-100 {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
}

.department-details-container .text-red-700 {
  color: #b91c1c;
  font-size: 14px;
}

.department-details-container .font-bold {
  font-weight: 700;
  margin-right: 4px;
}

/* Legacy utility classes for compatibility */
.department-details-container .fixed {
  position: fixed;
}
.department-details-container .inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.department-details-container .flex {
  display: flex;
}
.department-details-container .items-center {
  align-items: center;
}
.department-details-container .justify-center {
  justify-content: center;
}
.department-details-container .z-50 {
  z-index: 50;
}
.department-details-container .bg-white {
  background-color: white;
}
.department-details-container .rounded-lg {
  border-radius: 8px;
}
.department-details-container .p-6 {
  padding: 24px;
}
.department-details-container .max-w-md {
  max-width: 28rem;
}
.department-details-container .w-full {
  width: 100%;
}
.department-details-container .text-xl {
  font-size: 1.25rem;
}
.department-details-container .font-semibold {
  font-weight: 600;
}
.department-details-container .mb-4 {
  margin-bottom: 1rem;
}
.department-details-container .mb-2 {
  margin-bottom: 0.5rem;
}
.department-details-container .mb-3 {
  margin-bottom: 0.75rem;
}
.department-details-container .mt-2 {
  margin-top: 0.5rem;
}
.department-details-container .mr-1 {
  margin-right: 0.25rem;
}
.department-details-container .mr-2 {
  margin-right: 0.5rem;
}
.department-details-container .text-black {
  color: #000;
}
.department-details-container .text-gray-700 {
  color: #374151;
}
.department-details-container .text-gray-600 {
  color: #4b5563;
}
.department-details-container .text-gray-500 {
  color: #6b7280;
}
.department-details-container .text-gray-800 {
  color: #1f2937;
}
.department-details-container .text-teal-600 {
  color: #0d9488;
}
.department-details-container .text-teal-700 {
  color: #0f766e;
}
.department-details-container .text-lg {
  font-size: 1.125rem;
}
.department-details-container .text-sm {
  font-size: 0.875rem;
}
.department-details-container .block {
  display: block;
}
.department-details-container .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.department-details-container .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.department-details-container .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.department-details-container .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.department-details-container .p-5 {
  padding: 1.25rem;
}
.department-details-container .border {
  border-width: 1px;
  border-color: #d1d5db;
}
.department-details-container .border-gray-200 {
  border-color: #e5e7eb;
}
.department-details-container .rounded-md {
  border-radius: 6px;
}
.department-details-container .w-1\/2 {
  width: 50%;
}
.department-details-container .space-x-4 > * + * {
  margin-left: 1rem;
}
.department-details-container .justify-between {
  justify-content: space-between;
}
.department-details-container .text-white {
  color: white;
}
.department-details-container .cursor-not-allowed {
  cursor: not-allowed;
}
.department-details-container .relative {
  position: relative;
}
.department-details-container .font-medium {
  font-weight: 500;
}
.department-details-container .underline {
  text-decoration: underline;
}
.department-details-container .flex-shrink-0 {
  flex-shrink: 0;
}
.department-details-container .gap-4 {
  gap: 1rem;
}
.department-details-container .transition-all {
  transition-property: all;
}
.department-details-container .duration-200 {
  transition-duration: 200ms;
}
.department-details-container .hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.department-details-container .hover\:text-teal-700:hover {
  color: #0f766e;
}

/* Responsive Design */
@media (max-width: 768px) {
  #main-content-department-details {
    margin-left: 0 !important;
    margin-top: 70px !important;
    padding: 16px;
  }

  .department-details-container .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .department-details-container .profile-image {
    width: 100px;
    height: 100px;
  }

  .department-details-container .doctor-name {
    font-size: 24px;
  }

  .department-details-container .card-section {
    padding: 24px 16px;
  }

  .department-details-container .card-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  /* .department-details-container .modal-container {
    max-width: calc(100vw - 32px);
    margin: 16px;
  } */

  /* .department-details-container .modal-header {
    padding: 20px 20px 16px 20px;
  } */

  /* .department-details-container .modal-header h2 {
    font-size: 18px;
  } */

  /* .department-details-container .modal-form {
    padding: 20px;
  } */
}
/* General layout */
#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
  }
  
  /* Navbar styles */
  /* Navbar */
  #main-content-patient {
    margin-top: 100px;
    margin-left: 220px;
    padding: 20px;
    position: relative;
    z-index: 1;
   }
#navbar {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed; /* Fixed to the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10; /* Make sure navbar stays on top */
}

#navbar-left {
    display: flex;
    align-items: center;
}

#logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url("/static/media/Ellipse%201.04320aeaf66734784b5e.png") no-repeat center center/cover;
}

/* .logo-text {
    font-size: 20px;
    margin-left: 10px;
} */

#mfu-text {
    margin-left: 10px;
    font-size: 20px;
    color: #3BA092;
    font-weight: bold;
    margin-right:5px;
}

#wellness-text {
    font-size: 20px;
    color: #C0B257;
    font-weight: bold;
}

#navbar-right {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Adjust this to create space from the right */
}

.notification-btn:hover {
    background-color: #ffffff; /* Light background on hover */
}

#icon {
    font-size: 20px; /* Ensure the icon stays the same size */
    color: #333; /* Color of the notification icon */
}

#notification-btn:focus {
    outline: none; /* Remove focus outline for cleaner appearance */
}
#notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased padding for better clickability */
    margin-right: 15px; /* Spacing between notification button and profile */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#profile {
    display: flex;
    align-items: center;
    margin-right: 10px; /* Adjust this to provide space between profile and notification */
}
/* Profile image styling */
#profile-image {
    width: 35px; /* Set the desired width */
    height: 35px; /* Set the desired height */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Ensures the image doesn't stretch */
    margin-right: 10px; /* Adjust to provide space between profile image and name */
}

#profile-name {
    margin-left: 5px;
    font-weight: bold;
}

  
  /* Sidebar styles */
  .sidebar {
    position: fixed;
    left: 0;
    top: 4rem;
    bottom: 0;
    width: 220px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    z-index: 90;
  }
  
  .sidebar-container {
    display: flex;
    flex-direction: column;
  }
  
  .sidebar-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: #595959;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
  }
  
  .sidebar-btn:hover {
    background-color: #f5f5f5;
  }
  
  .sidebar-btn.active-tab {
    background-color: #E8F9F1;
    color: #3BA092;
    border-left: 3px solid #3BA092;
  }
  
  .sidebar-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .logout {
    
    margin-top: auto;
  }
  
  /* Main content styles */
 
   #main-content {
  margin-left: 220px;
  padding: 20px;
  position: relative;
  z-index: 1;
  }
  

  /* Search and filter styles */
  #search-container {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    width: 200px;
    height: 2rem;
    padding: 0 0.75rem;
    margin-right: 1rem;
    background-color: #E8F9F1;
  }
  
  .search-icon {
    color: #969696;
  }
  
  #search-input {
    margin-left: 0.5rem;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    color: #969696;
  }
  
  #search-input::placeholder {
    color: #969696;
  }
  
  #filter-button {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #3BA092;
    border-radius: 9999px;
    width: 158px;
    height: 2rem;
    padding: 0 1rem;
    font-size: 0.75rem;
    color: #969696;
  }
  
  .filter-icon {
    margin-right: 0.5rem;
    color: #3BA092;
  }
  
  /* Table styles */
  #table-wrapper {
    overflow-x: auto;
    margin-top: 1rem;
  }
  
  #table-content {
    width: 100%;
    border-collapse: collapse;
  }
  
  #table-header {
    background-color: #f3f4f6;
  }
  
  #table-header-cell {
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #242222;
    transition: background-color 0.2s;
  }
  
  #table-header-cell:hover {
    background-color: #e5e7eb;
  }
  
  #table-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  #sort-icon {
    color: #595959;
  }
  
  #table-row {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.15s;
  }
  
  #table-row:hover {
    background-color: #f9fafb;
  }
  
  #table-cell {
    padding: 1rem;
    text-align: left;
    color: #595959;
  }
  
  #empty-table-message {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
  }
  
  .action-icon {
    cursor: pointer;
    color: #595959;
  }
  
  .action-popup {
  position: fixed;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  width: auto;
  padding: 0.75rem 1rem;

  display: flex;
  justify-content: center;
  align-items: center;
}


/* Optional arrow */
.action-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 1rem;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}

.action-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.action-button:hover {
  background-color: #f3f4f6;
  color: #111827;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* Pagination styles */
  #pagination-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  #pButton {
    padding: 0.5rem 1rem;
    background-color: #3BA092;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  #pButton:hover {
    background-color: #2c8a7d;
  }
  
  #pButton:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
  }
  
  
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-container {
  background: white;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
}

.submit-btn {
  background:  #3BA092;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.submit-btn:hover {
  background: #297067;
}

.close-btn-1 {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
}

.close-btn:hover {
  color: #374151;
}

/*# sourceMappingURL=main.bfad9fe4.css.map*/