﻿@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&sisplay=swap');

* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    min-height: 100vh;
    background: #fff;
    overflow: hidden;  /*Prevent scrolling at the root level */
}

.sidebar {
    width: 300px;
    position: fixed; /* Fixed for persistent visibility */
    height: 100vh;
    background-color: #ddd;
    overflow: hidden;
    padding-top: 15px;
    transition: 0.5s;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it appears above content */
    overflow-y: auto; /* Allow scrolling within the sidebar if content exceeds height */
}

    
    .sidebar ul {
        position: relative;
        height: 100vh;
    }

        .sidebar ul li {
            list-style: none;
        }

            .sidebar ul li:hover {
                background: #c8c5c5;
            }

            .sidebar ul li a {
                text-decoration: none;
                display: flex;
                white-space: nowrap;
                position: relative;
            }

                .sidebar ul li a .icon {
                    justify-content: center;
                    display: flex;
                    align-items: center;
                    position: relative;
                    min-width: 60px;
                    height: 40px;
                    font-size: 1.5em;
                    color: #333
                }

                .sidebar ul li a .text {
                    position: relative;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    font-size: 1em;
                    color: #333;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                }

            .sidebar ul li.logo {
                margin-bottom: 50px;
            }

                .sidebar ul li.logo :hover {
                    background: #ffd800;
                }

                .sidebar ul li.logo .icon {
                    font-size: 2em;
                }

                .sidebar ul li.logo .text {
                    font-size: 1.2em;
                    font-weight: 500;
                }

.bottom {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.top-right 
{
    position: absolute;
    top: 20px;
    right: 20px;
    align-items: center;
    justify-content: center;
}

.logout-top-right 
{
    position: fixed; /* Use fixed to position relative to the viewport */
    top: 5px; /* Distance from the top of the page */
    right: 20px; /* Distance from the right of the page */
    z-index: 1000; /* Ensure it's above other elements */
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar 
{
    position: fixed; /* Ensure it stays at the top even when scrolling */
    top: 0;
    left: 300px;
    width: 100%; /* Full width of the page */
    height: 50px; /* Adjust the height as needed */
    background-color: #ccc; /* Light gray color */
    z-index: 999; /* Ensure it appears above other elements */
    display: flex;
    align-items: center; /* Vertically center content */
    padding: 0 20px; /* Add some padding for inner content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Optional shadow for a subtle effect */
}

.custom-multiview {
    margin-top: 50px; /* Below the top bar */
    margin-left: 300px; /* Beside the sidebar */
    height: calc(100vh - 50px); /* Full height minus top bar */
    overflow-y: auto; /* Enable scrolling for main content */
    padding: 20px;
    background-color: #fff;
    z-index: 1; /* Ensure content is below the top bar */
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    height: 40px;
}

    .menu-item:hover {
        background-color: #ccc;
    }

.main-content {
    margin-top: 0; /* Below the top bar */
    margin-left: 300px; /* Beside the sidebar */
    height: calc(100vh - 50px); /* Full height minus top bar */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensure padding doesn't affect width/height */
}

/* Apply to textboxes */
input[type="text"],
textarea,
select {
    border-radius: 10px; /* Adjust value for desired curvature */
    border: 1px solid #ccc; /* Optional: Add border styling */
    padding: 4px; /* Optional: Add padding for better appearance */
    height: 30px;
    outline: none; /* Remove focus outline */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    transition: all 0.3s ease; /* Smooth transition for hover/focus effects */
}

    /* Add hover effect */
    input[type="text"]:hover,
    textarea:hover,
    select:hover {
        border-color: #888; /* Change border color on hover */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow */
    }

    /* Add focus effect */
    input[type="text"]:focus,
    textarea:focus,
    select:focus {
        border-color: #007BFF; /* Highlight border color on focus */
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); /* Add focus shadow */
    }

/* Phone Format */
input[type="tel"] {
    width: 125px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}


/* General button styling */
button,
input[type="button"],
input[type="submit"] {
    background-color: #007BFF; /* Default background color */
    color: #fff; /* Text color */
    border: none; /* Remove borders */
    border-radius: 10px; /* Rounded corners */
    padding: 10px 20px; /* Padding for better size */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

    /* Hover effect for buttons */
    button:hover,
    input[type="button"]:hover,
    input[type="submit"]:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: scale(1.05); /* Slightly enlarge the button */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    }

    /* Active effect for buttons */
    button:active,
    input[type="button"]:active,
    input[type="submit"]:active {
        background-color: #004080; /* Even darker blue when active */
        transform: scale(0.98); /* Slightly shrink the button */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduce shadow */
    }

    /* Disabled button styling */
    button:disabled,
    input[type="button"]:disabled,
    input[type="submit"]:disabled {
        background-color: #cccccc; /* Light gray for disabled state */
        color: #666; /* Dark gray text for contrast */
        cursor: not-allowed; /* Not-allowed cursor for disabled buttons */
        box-shadow: none; /* Remove shadow for disabled buttons */
    }

/* Hover effect for the radio button label */
.radio-button-list input[type="radio"]:hover + label {
    background-color: lightgray; /* Light gray on hover */
    border-radius: 5px; /* Rounded corners on hover */
    transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
}

/* Selected effect for the radio button label */
.radio-button-list input[type="radio"]:checked + label {
    background-color: #fce0b9; /* Yellow background when selected */
    border-radius: 5px; /* Rounded corners when selected */
    transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
}

.radio-button-list input[type="radio"] {
    margin-right: 10px; /* Adds space to the right of each radio button */
}

#ViewAppt .radio-button-list label {
    margin-right: 100px; /* Adds space between labels and adjacent options in Appointment section */
}

#PHQ .radio-button-list label {
    margin-right: 20px; /* Adds space between labels and adjacent options in PHQ section */
}

#SF .radio-button-list label {
    margin-right: 20px; /* Adds space between labels and adjacent options in Sliding Fee section */
}

#ConsentMin .radio-button-list label {
    margin-right: 20px; /* Adds space between labels and adjacent options in Minor Consent section */
}


/* Gridview ######################################################################*/ 

.gridview {
    width: 100%;
    border-collapse: collapse;
    background-color: #ddd;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #333;
    border-radius: 10px; /* Add curved corners */
    overflow: hidden; /* Ensures corners apply neatly */
}

    .gridview th {
        background-color: #c8c5c5;
        padding: 10px;
        text-align: left;
        border: 1px solid #f1f1f1;
    }

    .gridview td {
        border: 1px solid #c8c5c5;
        padding: 10px;
    }

    .gridview tr:nth-child(even) {
        background-color:#f1f1f1;
    }

    .gridview tr:hover {
        background-color: #fce0b9;
    }


/*Release Appointment History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$   */

.modalAppt {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentAppt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1015px; /* Set exact width */
    height: 700px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentAppt iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeAppt {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Release Cancelation History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalCancel {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentCancel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 820px; /* Set exact width */
    height: 280px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentCancel iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeCancel {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}


/*Release Canceled Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalCanceled {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentCanceled {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 744px; /* Set exact width */
    height: 215px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentCanceled iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeCanceled {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}


/*Insurance Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalIns {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentIns {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 760px; /* Set exact width */
    height: 300px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentIns iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
     }

.closeIns {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Medical History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalMH {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentMH {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px; /* Set exact width */
    height: 220px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentMH iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeMH {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Family History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalFH {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentFH {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 770px; /* Set exact width */
    height: 255px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentFH iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeFH {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Medication History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalMC {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentMC {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 745px; /* Set exact width */
    height: 225px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentMC iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeMC {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}



/*Surgical History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalSH {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentSH {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 775px; /* Set exact width */
    height: 220px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentSH iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeSH {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Allergy History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ radio-button-list */

.modalAH {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentAH {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 775px; /* Set exact width */
    height: 255px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentAH iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeAH {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}


/*PHQ9 History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalPHQ {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentPHQ {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 750px; /* Set exact width */
    height: 600px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentPHQ iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closePHQ {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Release Medical Info History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalRM {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentRM {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 740px; /* Set exact width */
    height: 710px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentRM iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeRM {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}

/*Patient No Look Up Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalPtLkNo {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentPtLkNo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 355px; /* Set exact width */
    height: 185px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentPtLkNo iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closePtLkNo {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}


/*Patient Type Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalPtType {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentPtType {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px; /* Set exact width */
    height: 500px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentPtType iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closePtType {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
    }


/*Release Survey History Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalSrv {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentSrv {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 820px; /* Set exact width */
    height: 710px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentSrv iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeSrv {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}


/*View Document Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalView {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentView {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%; /* Set exact width */
    height: 80%; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentView iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeView {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}




/*Term and Condition Form $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.modalTerm {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

.modal-contentTerm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1015px; /* Set exact width */
    height: 600px; /* Set exact height */
    background-color: #fff;
    padding: 0; /* Remove extra padding to fit the iframe perfectly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

    .modal-contentTerm iframe {
        width: 100%; /* Match the parent container's width */
        height: 100%; /* Match the parent container's height */
        border: none; /* Remove border for clean appearance */
        border-radius: 10px; /* Adjust the value to set the desired curvature */
        overflow: hidden; /* Ensures content stays within rounded corners */
    }

.closeTerm {
    position: absolute;
    top: 4px; /* Adjust as needed */
    right: 12px; /* Position to the right */
    cursor: pointer;
    z-index: 1001; /* Ensure it appears above other content */
}



/* Apply styles to password fields ######################################################################*/
    input [type="password"] {
    border-radius: 10px; /* Match text input */
    border: 1px solid #ccc; /* Consistent border */
    padding: 4px; /* Same padding as text input */
    height: 30px; /* Match text input height */
    outline: none; /* Remove focus outline */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Consistent shadow */
    transition: all 0.3s ease; /* Smooth hover/focus effects */
}

    /* Add hover effect */
    input[type="password"]:hover {
        border-color: #888; /* Same hover effect as text input */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Add focus effect */
    input[type="password"]:focus {
        border-color: #007BFF;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Apply styles to Image fields ######################################################################*/

.my-image-field {
    border-radius: 15px; /* Smooth curved edges */
    overflow: hidden; /* Hides content overflow */
    max-width: 100%;
    height: auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
}



.my-image-field2 {
    border-radius: 15px; /* Smooth curved edges */
    overflow: hidden; /* Hides content overflow */
    max-width: 100%;
    height: auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

.my-image-field2:hover {
        transform: scale(1.05);
        box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4);
    }

#Minor-Image-Panel img {
    border-radius: 15px; /* Curve the image corners */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow effect */
    overflow: hidden;
    width: 90px; /* Ensure width matches your generated buttons */
    height: 90px; /* Ensure height matches your generated buttons */
    object-fit: cover; /* Maintain aspect ratio without stretching */
    transition: transform 0.2s ease-in-out; /* Smooth animation */
}

    /* Optional: Add hover effect */
    #Minor-Image-Panel img:hover {
        transform: scale(1.05); /* Slight zoom-in on hover */
        box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
    }

.minor-container {
    display: inline-block;
    text-align: center;
    margin: 10px;
}

    .minor-container img {
        border-radius: 15px;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s;
    }

        .minor-container img:hover {
            transform: scale(1.1);
        }

.minor-name-link {
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
    margin-top: 5px;
}

    .minor-name-link:hover {
        text-decoration: underline;
    }

.minor-name-linkPt {
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fc7e05;
    margin-top: 5px;
}


/* Enable scrolling for the entire page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Make sure the main content can expand and scroll */
#MainContent {
    min-height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Ensure the form takes full height and allows scrolling */
form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Star Rating ######################################################################*/


.star-rating i {
    font-size: 24px;
    color: gray;
    cursor: pointer;
}

.star-rating i.selected {
    color: gold;
}

.question-container {
    margin-bottom: 20px;
}

.question-label {
    /*font-weight: bold;*/
    font-size: 14px;
}

/* Star Rating for Mobile ######################################################################*/


.star-rating-Mobile i {
    font-size: 60px;
    color: gray;
    cursor: pointer;
}

    .star-rating-Mobile i.selected {
        color: gold;
    }

.question-container-Mobile {
    margin-bottom: 20px;
}

.question-label-Mobile {
    /*font-weight: bold;*/
    font-size: 30px;
}


/* Checkbox ######################################################################*/
.chk-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

    .chk-list label {
        width: 100px; /* Fixed width for each label */
        display: flex;
        align-items: center;
    }


/* Checkbox for Provider Schedule ######################################################################*/

/* Style for checkboxes and labels */
.checkbox-container {
    display: flex;
    align-items:center;
    gap: 4px; /* Adds spacing between checkbox and label */
    margin: 14px; /* Adjust margin for spacing */
}

    /* Style for checkbox */
    .checkbox-container input[type="checkbox"] {
        width: 14px; /* Adjust checkbox size if needed */
        height: 14px;
        margin-right: 5px; /* Extra spacing between checkbox and label */
    }

    /* Style for label */
    .checkbox-container label {
        font-size: 12px; /* Adjust font size if needed */
        cursor: pointer;
        white-space: nowrap; /* Prevents text wrapping */
    }

/* Checkbox for Appointment Status ######################################################################*/

/* Style for checkboxes and labels */
.checkbox-containerAppt {
    display: flex;
    align-items: center;
    gap: 4px; /* Adds spacing between checkbox and label */
    margin: 14px; /* Adjust margin for spacing */
}

    /* Style for checkbox */
    .checkbox-containerAppt input[type="checkbox"] {
        width: 14px; /* Adjust checkbox size if needed */
        height: 14px;
        margin-right: 5px; /* Extra spacing between checkbox and label */
    }

    /* Style for label */
    .checkbox-containerAppt label {
        font-size: 14px; /* Adjust font size if needed */
        cursor: pointer;
        white-space: nowrap; /* Prevents text wrapping */
    }

/* Buttons for days ######################################################################*/

.dayButton {
    margin: 4px;
    padding: 10px;
    background-color: #f0ad4e;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.hourButton {
    margin: 4px;
    padding: 8px;
    background-color: #5bc0de;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}


/* Location Radio Button ######################################################################*/

.Location-radio-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 5px;
}

    .Location-radio-list input[type="radio"] {
        display: none;
    }

    .Location-radio-list label {
        display: block;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #f9f9f9;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 13px;
    }

        .Location-radio-list label:hover {
            background-color: #e6f7ff;
        }

    .Location-radio-list input[type="radio"]:checked + label {
        border-color: #007bff;
        background-color: #cce5ff;
    }

/* Location Radio Button for Mobile######################################################################*/

.Location-radio-list-Mobile {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 5px;
}

    .Location-radio-list-Mobile input[type="radio"] {
        display: none;
    }

    .Location-radio-list-Mobile label {
        display: block;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #f9f9f9;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 30px;
    }

        .Location-radio-list-Mobile label:hover {
            background-color: #e6f7ff;
        }

    .Location-radio-list-Mobile input[type="radio"]:checked + label {
        border-color: #007bff;
        background-color: #cce5ff;
    }

/* Provider Radio Button ######################################################################*/

.provider-radio-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

    .provider-radio-list input[type="radio"] {
        display: none; /* Hide default radio button */
    }

    .provider-radio-list label {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 10px;
        cursor: pointer;
        width: 150px;
        transition: all 0.3s ease;
        background-color: #f9f9f9;
        text-align: center;
    }

        .provider-radio-list label:hover {
            background-color: #e6f7ff;
        }

    .provider-radio-list input[type="radio"]:checked + label {
        border-color: #007bff;
        background-color: #cce5ff;
    }


/* Provider Radio Button for Mobile ######################################################################  star*/

.provider-radio-list-Mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

    .provider-radio-list-Mobile input[type="radio"] {
        display: none; /* Hide default radio button */
    }

    .provider-radio-list-Mobile label {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 10px;
        cursor: pointer;
        width: 300px; /* Adjusted from 300px */
        box-sizing: border-box;
        transition: all 0.3s ease;
        background-color: #f9f9f9;
        text-align: center;
    }

        .provider-radio-list-Mobile label:hover {
            background-color: #e6f7ff;
        }

    .provider-radio-list-Mobile input[type="radio"]:checked + label {
        border-color: #007bff;
        background-color: #cce5ff;
    }

    .provider-radio-list-Mobile .rating {
        font-size: 40px; /* Increased from 24px */
        color: orange;
    }

/* Calendar ######################################################################*/

.custom-calendar {
    border-collapse: collapse;
    width: 100%;
}

    .custom-calendar td,
    .custom-calendar th {
        border: 1px solid #ddd;
        padding: 6px;
        text-align: center;
    }

    .custom-calendar td {
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .custom-calendar td:hover {
            background-color: #f0f0f0;
        }

.available-day {
    position: relative;
}


/* Available Day ######################################################################*/

    .available-day a {
        display: inline-block;
        padding: 8px 10px;
        background-color: #007BFF;
        color: white !important;
        border-radius: 10%;
        font-weight: bold;
        width: 100px;
        height: 30px;
        line-height: 14px;
        text-align: center;
        transition: background-color 0.3s;
        text-decoration: none !important;
    }

        .available-day a:hover {
            background-color: #0645b5;
        }


    /* Available Day for Mobile ######################################################################*/

    .available-day-Mobile a {
        display: inline-block;
        padding: 8px 10px;
        background-color: #007BFF;
        color: white !important;
        border-radius: 10%;
        font-weight: bold;
        width: 100%;
        height: 30px;
        line-height: 25px;
        text-align: center;
        transition: background-color 0.3s;
        text-decoration: none !important;
    }

        .available-day-Mobile a:hover {
            background-color: #0645b5;
        }



/* Available Hours ######################################################################*/

.hours-grid {
    display: grid;
    grid-template-columns: repeat(5, auto); /* max 5 columns */
    gap: 10px;
    margin-top: 10px;
    width:100%;
}

.hourButton {
    padding: 8px 12px;
    background-color: #6DCD4B;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

    .hourButton:hover {
        background-color: #218838;
    }

/* Available Hours Mobile ######################################################################*/

.hours-grid-Mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* max 5 columns */
    gap: 1%;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.hourButton-Mobile {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 25px; /* larger font */
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

    .hourButton-Mobile:hover {
        background-color: #218838;
    }

/* Map ######################################################################*/

#map {
    width: 100%;
    height: 500px; /* or whatever height you need */
    border-radius: 15px; /* optional, but looks good with shadows */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* Confirmation Message ######################################################################*/

.confirmation-panel {
    padding: 15px;
    background-color: #fefefe;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
}

.confirm-btn, .cancel-btn {
    margin: 10px 5px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
}

.confirm-btn {
    background-color: #28a745;
    color: white;
}

.cancel-btn {
    background-color: #dc3545;
    color: white;
}





/* Current Patient Hour ######################################################################*/

.hourButton2.current-patient-slot {
    background-color: #FFA500 !important;
    color: white !important;
    font-weight: bold;
    cursor: not-allowed;
}

.hourButton2 {
    margin: 5px;
    padding: 10px 14px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.disabled-slot {
    background-color: #ccc !important;
    color: #888 !important;
    cursor: not-allowed;
}

.selected-slot {
    background-color: darkorange !important;
    font-weight: bold;
}

.current-patient-slot {
    background-color: #FFA500 !important; /* Orange */
    color: white !important;
    font-weight: bold;
    cursor: not-allowed;
}

/* Cancel Box ######################################################################*/

.cancel-box {
    border: 2px solid #FFB6C1; /* Light red/pink border */
    border-radius: 10px;
    padding: 10px;
    background-color: #fff8f8;
    margin-top: 10px;
}

.ajax__tab_default .ajax__tab_header {
    font-weight: bold;
    background-color: #f5f5f5;
}

.ajax__tab_active .ajax__tab_tab {
    background-color: #e0f7fa;
    font-weight: bold;
}

/* large checkbox ######################################################################*/

.large-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    transform: scale(1.5); /* Grows the checkbox without breaking layout */
    margin-right: 8px;
}


/*Button for Mobile Patient Intake ########################################################### Cancel*/
.info-button {
    display: inline-flex; /* Center inside text-align: center container */
    align-items: center;
    background-color: #ddd;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s;
    width: 80%;
    margin: 0 auto 30px auto;/* center horizontally */
}

.info-button:hover {
    background-color: #ccc;
    transform: scale(1.02);
}

.info-button .icon {
    height: 70px;
    margin-right: 20px;
}

.info-button .label {
    font-size: 35px;
    font-weight: 500;
    color: #333;
}
.info-button-img {
    display: block;
    margin: 50px auto;
    width: 30%;
    height: auto;
    padding: 10px;
    border-radius: 15px;
    background-color: #ddd;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s;
}

    .info-button-img:hover {
        background-color: #ccc;
        transform: scale(1.02);
    }

/* Apply styles to password fields ######################################################################*/
input[type="password"] {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 4px;
    height: 30px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    input[type="password"]:hover {
        border-color: #888;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    input[type="password"]:focus {
        border-color: #007BFF;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    }


    /*Mobile title format #####################################################################*/
.section-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    background-color: #fefefe;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    
}

    .section-box h1 {
        font-size: 40px;
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
        color: #333;
    }


/*Mobile radio button #####################################################################*/

/* Hover effect for the radio button label */
.radio-button-list-Mobile input[type="radio"]:hover + label {
    background-color: lightgray; /* Light gray on hover */
    border-radius: 5px; /* Rounded corners on hover */
    transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
}

/* Selected effect for the radio button label */
.radio-button-list-Mobile input[type="radio"]:checked + label {
    background-color: #fce0b9; /* Yellow background when selected */
    border-radius: 5px; /* Rounded corners when selected */
    transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
}

.radio-button-list-Mobile input[type="radio"] {
    margin-right: 10px; /* Adds space to the right of each radio button */
    transform: scale(2.2); /* Makes the radio button 80% larger */
    margin-right: 10px;
    accent-color: #007bff; /* Optional: change radio circle color if supported */
    cursor: pointer;
}

.radio-button-list-Mobile label {
    margin-right: 100px; /* Adds space between labels and adjacent options in Appointment section */
}

/*Mobile radio button for Sliding Fee #####################################################################*/

.radio-button-list-MobileSF td {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 1.4;
}

.radio-button-list-MobileSF input[type="radio"] {
    transform: scale(2.2);
    margin-top: 15px;
    flex-shrink: 0;
}

    .radio-button-list-MobileSF input[type="radio"]:hover + label {
        background-color: #faddbf; /* Light gray on hover */
        border-radius: 5px; /* Rounded corners on hover */
        transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
    }

/*Mobile radio button for Minor Consent #####################################################################*/

.radio-button-list-MobileMC td {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 1.4;
}

.radio-button-list-MobileMC input[type="radio"] {
    transform: scale(2.2);
    margin-top: 15px;
    flex-shrink: 0;
}

    .radio-button-list-MobileMC input[type="radio"]:hover + label {
        background-color: #faddbf; /* Light gray on hover */
        border-radius: 5px; /* Rounded corners on hover */
        transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
    }



/*Upcoming Appointment #####################################################################*/

.appointment-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    background-color: #f9f9f9;
}

.btn-view {
    display: block;
    text-align: left;
    font-size: 30px;
    color: #333;
    text-decoration: none;
}

.btn-actions {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.btn-cancel {
    background-color: #e74c3c;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    
}

.btn-reschedule {
    background-color: #3498db;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 30px;
}

/* Checkbox for Mobile Cancel Appointment ######################################################################info-button*/

/* Style for checkboxes and labels */
.checkbox-containerApptMobile  {
    display: flex;
    align-items: center;
    gap: 4px; /* Adds spacing between checkbox and label */
    margin: 14px; /* Adjust margin for spacing */
}

    /* Style for checkbox */
    .checkbox-containerApptMobile input[type="checkbox"] {
        width: 30px; /* Adjust checkbox size if needed */
        height: 30px;
        margin-right: 5px; /* Extra spacing between checkbox and label */
    }

    /* Style for label */
    .checkbox-containerApptMobile label {
        font-size: 30px; /* Adjust font size if needed */
        cursor: pointer;
        white-space: nowrap; /* Prevents text wrapping */
    }

/*----------------------------------------- Floating Icon Button---------------------------------------------------- */
#logoutContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(#f25f0d, #ea5e1c);
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
}

    /* Image always shown */
    #logoutContainer img {
        height: 40px;
        width: 40px;
        transition: all 0.3s ease;
    }

/* Hidden text shown only when expanded */
.logout-text {
    color: white;
    font-size: 30px;
    margin-left: 10px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Expanded state */
#logoutContainer.expanded {
    width: 180px;
    height: 80px;
    border-radius: 35px;
    padding: 12px 20px;
    justify-content: flex-start;
}

    #logoutContainer.expanded .logout-text {
        opacity: 1;
        pointer-events: auto;
    }



/*----------------------------------------- Floating Icon Button for view document---------------------------------------------------- */
#ViewContainer {
    position: fixed;
    top: 60px;
    right: 20px;
    background: linear-gradient(#f25f0d, #ea5e1c);
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    width: 50px;
    height: 50px;
    transition: all 0.4s ease;
}

    #ViewContainer:hover {
        width: 180px;
        height: 50px;
        border-radius: 35px;
        padding: 12px 20px;
        justify-content: flex-start;
    }

    #ViewContainer img {
        height: 30px;
        width: 30px;
        object-fit: contain;
        display: block;
        
        margin-right: 105px;
        margin-left: 0;
    }

.View-text {
    color: white;
    font-size: 16px;
    margin-right: 10px;
    margin-left: 0;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#ViewContainer:hover .View-text {
    opacity: 1;
    pointer-events: auto;
}




.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    padding: 10px 20px;
}

.top-left {
    flex: 1;
}

.logout-top-right {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
}


/*----------------------------------------- Multi Select DropDown for messaging---------------------------------------------------- */
.multiselect-wrapper {
    width: 140px;
    position: relative;
}

.multiselect-header {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 13px;
}

.multiselect-checkboxes {
    display: none;
    position: absolute;
    top: 35px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 180px;
    overflow-y: auto;
    font-size:13px;
    z-index: 1000;
}

/*----------------------------------------- Multi Select DropDown Race And Ethnicity for messaging---------------------------------------------------- */
.multiselectRE-wrapper {
    width: 285px;
    position: relative;
}

.multiselectRE-header {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 13px;
}

.multiselectRE-checkboxes {
    display: none;
    position: absolute;
    top: 35px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 180px;
    overflow-y: auto;
    font-size: 12px;
    z-index: 1000;
}

/*----------------------------------------- Multi Select DropDown Insurance for messaging---------------------------------------------------- */
.multiselectIns-wrapper {
    width: 435px;
    position: relative;
}

.multiselectIns-header {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 13px;
}

.multiselectIns-checkboxes {
    display: none;
    position: absolute;
    top: 35px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 180px;
    overflow-y: auto;
    font-size: 12px;
    z-index: 1000;
}

/*----------------------------------------- Upload Custom List for Messaging ---------------------------------------------------- */

.upload-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.upload-container {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    padding-top: 50px;
    font-family: Arial;
    font-size: 16px;
    color: #333;
    position: relative;
}

.upload-btn {
    margin-top: 15px;
    background-color: #0f5d7d;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.upload-input {
    display: none; /* Hidden unless needed as fallback */
}

.drop-zone {
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    color: #333;
    background-color: #f9f9f9;
    cursor: pointer;
}

.blue-btn {
    margin-top: 10px;
    background-color: #166687;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 4px;
}