
html,
body {
    margin: 0;
    padding: 0;
    width: 100dvw;
    height: 100dvh;
}


.wrapper-fx {
    display: flex;
    height: calc(100% - 73px);
    width: 100dvw;
}

.container {
    overflow: auto;
    flex: 1;
    min-height: fit-content;
    /* min-width: fit-content; */
}

.sidenav-wrapper {
    /* max-width:300px;
width: fit-content; */
    width: min-content;
    background-color: rgb(105, 245, 245);
    transition: all 1s;
    top: 0;
    opacity: 1
}

.sidenav-container {
    gap: 20px;
    box-sizing: border-box;
    padding: 20px 20px 20px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.sidenav-container .submit {
    max-width: 200px;
    width: 30vw;
    height: 60px;
    border-radius: 5px;
    font-size: larger;
    background-color: beige;
    border-color: blanchedalmond;
    cursor: pointer;
    border-style: none;
    box-shadow: 0px -3px 0px beige, -3px -3px 0px beige, 0px 2px 2px blanchedalmond, 2px 2px 2px blanchedalmond;
}

.sidenav-container .submit:hover {
    background-color: rgb(243, 243, 193);
    border-color: rgb(238, 211, 171);
    border-style: none;
    box-shadow: 2px 2px 2px rgb(238, 211, 171);
}




.info-wrapper {
    display: flex;
    gap:15px;
    overflow: auto;
    height: min-content;
    /* background-color: aquamarine; */
}

.info::before {
    content: "\2139";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: aquamarine;
    color: cadetblue;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
    text-align: center;
    border: 3px solid cadetblue;

    line-height: 20px;
    /* Vertically center text based on circle height */

}

.info::before::after {
    content: "&#xf05a;";
    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);
}

form {
    background-color: #09a5e0;
    color : white;
    padding: 15px;
    border-radius: 20px;
}

form .btn, #sideNavBtn {
    background-color: #002f5b !important;
color: white;
}

form .btn:hover, #sideNavBtn:hover {
    background-color: #012444 !important;
color: white;
}

.wrapper {

    max-width: 800px;
    min-width: 100%;
    height: 100%;
    flex: 1;
    margin: auto
}

.customercard {
    width: 100%;
}

@media (max-width: 980px) {
    .wrapper-fx {
        flex-direction: column;
    }

    .sidenav-wrapper {
        width: unset;
        height: -webkit-fit-content;
    }

    
.info-wrapper {
    flex-direction: column;
}



    .sidenav-container {
        flex-direction: row;
    }

}

.hide {
    top: 2000px;
    display: none !important;
    opacity: 0
}

    .dropbtn {
        font-size: 16px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 40px;
        width: 40px;
        border: none;
        cursor: pointer;
        aspect-ratio: 1;
        /* border-radius: 50%; */
    }

    .dropbtn:hover,
    .dropbtn:focus {
        background-color: #3e8e4120;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        height: 100%;
        color: white;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        
    width: max-content;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        right: 0;
        z-index: 1;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown a:hover {
        background-color: #ddd;
    }

    .show {
        display: block;
    }

    .navbar-container {
        padding: 16px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-wrapper {
        background-color: #09a5e0;
        border-bottom: 1px solid rgb(127, 251, 255);
    }

    body {
        background-color: #ebf9fd;
        font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;
    }

    form {
        max-height: 100%;
        height: max-content;
        max-width: 900px;
        position: relative;
        margin: auto;
        display: flex;
        gap: 10px;
        flex-flow: column;
        align-content: center;
        overflow: auto;
        /* flex-direction: column; */
    }

    form input:not([type='radio']),
    form select,
    form textarea {
        width: 100%;
        font-family: Roboto, Arial, sans-serif;
    }

    section {
        height: fit-content;
        max-height: 100%;
        min-width: 100%;
        position: relative;
        overflow: auto;
        display: block;
        border-radius: 20px;
        /* background-color: #fff; */
        /* background-color: #cc77aa30; */
        /* padding: 20px; */
        box-sizing: content-box;
        /* margin: 10px 0px; */
        transition: all 1s;
    }



    fieldset {
        border-radius: 5px;
        border: 3px solid #DBDCE0;
        /* background: palevioletred; */
        width: 100%;
        color: black;
        margin-bottom: 5px;
    }

    #intakeRest {
        display: flex;
        flex-direction: row;
        gap: 15px;
        /* min-height: 500px; */
        ;
    }

    /* #intakeRest, */
    #section2 {
        display: none;
    }

    #section2 {
        left: -3000px
    }

    form>* {
        width: 100%
    }

    .customercard>.card-body {
        display: flex;
        flex-direction: row;
        min-width: 300px;
        overflow: auto;
        flex-wrap: wrap;
        gap: 15px;
    }

    @media (min-width: 981px) {


        form {
            flex-flow: column wrap;
            justify-content: center;
        }


        .customercard>.card-body {

            flex-direction: column;
        }

    }

    #weekly-calendar {
        width: 100%;
        border-collapse: collapse;
    }

    #weekly-calendar th,
    #weekly-calendar td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: center;
    }

    #weekly-calendar th {
        background-color: #f0f0f0;
    }

    .event {
        background-color: lightblue;
        cursor: pointer;
    }

    .fc-view-harness {
        /* background-color: white; */
    }

    .fc-scrollgrid {
        border: 0 !important;
        background-color: transparent;
    }

    table {
        border-collapse: separate !important;
    }

    th,
    tbody {
        background-color: white;
    }

    th {
        padding: 25px 0;
    }



    thead tr:first-child th:first-child {
        border-top-left-radius: 15px;
    }

    thead tr:first-child th:last-child {
        border-top-right-radius: 15px;
    }

    #calendar {
        width: 100%;
        height: 100%;
        /* max-height: max-content;
        max-width: max-content; */
        overflow: auto;
        
    margin: 0 auto;
    }

    .timeline-series dt {
        text-align: end;
    }

    datatable-container table {
        font-size: 0.5rem;;
    }

    .fc-list {
        background-color: white;
    }

    .fc-toolbar-title {
        font-size: 1.2rem !important;
        text-align: center;
    }

    .fc-toolbar-chunk {
        display: contents;
    }

   