@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,0,0');





/* CUSTOM SCROLLBAR */
::-webkit-scrollbar             { width: 5px; }
::-webkit-scrollbar-track       { background: #F1F1F1; }
::-webkit-scrollbar-thumb       { background: #888888; }
::-webkit-scrollbar-thumb:hover { background: #555555; }





/* RESET DEFAULT */
* {
    box-sizing                 : border-box;
    color                      : #212121;
    font-size                  : 15px;
    font-family                : 'Montserrat', sans-serif;
    font-weight                : 400;
    list-style                 : none;
    margin                     : 0;
    outline                    : none;
    padding                    : 0;
    text-decoration            : none;
    transition                 : background-color 0.15s,
                                 border           0.15s,
                                 box-shadow       0.15s,
                                 color            0.15s;
   -webkit-font-smoothing      : antialiased;
   -webkit-tap-highlight-color : transparent;
}


/* MATERIAL ICONS */
i {
    display                    : inline-flex;
    align-items                : center;
    justify-content            : center;
    overflow                   : hidden;
    font-family                : 'Material Symbols Rounded';
    font-weight                : normal;
    font-style                 : normal;
    line-height                : 1;
    letter-spacing             : normal;
    text-transform             : none;
    white-space                : nowrap;
    word-wrap                  : normal;
    direction                  : ltr;
   -webkit-font-smoothing      : antialiased;
   -webkit-tap-highlight-color : transparent;
    user-select                : none;
}





/* UNORDERED LIST */
ul { list-style: none; }





/* HEADER */
.header {
    background                 : url('../images/header-texture.png'), linear-gradient(90deg, rgba(7, 129, 225, 1) 0%, rgba(22, 129, 213, 1) 77%, rgba(49, 148, 208, 1) 100%);
    box-shadow                 : 0 1px 0 0 rgba(0, 0, 0, 0.25);
    display                    : flex;
    align-items                : center;
    justify-content            : flex-start;
    position                   : fixed;
    top                        : 0;
    left                       : 0;
    z-index                    : 1000;
    height                     : 50px;
    width                      : 100%;
}

.header > .scrubbed-logo {
    background                 : transparent url('../images/scrubbed-logo.png') center center no-repeat;
    background-size            : 130px;
    height                     : 50px;
    width                      : 225px;
}

.header > .main-menu {
    display                    : flex;
    align-items                : center;
    justify-content            : flex-end;
    height                     : 50px;
    padding                    : 0 100px;
    width                      : calc(100% - 225px);
}

.header > .main-menu > a {
    color                      : #FFFFFF;
    cursor                     : pointer;
    display                    : block;
    font-size                  : 0.85rem;
    font-weight                : 500;
}

.header > .main-menu > a:nth-child(1) {
    margin-right               : 20px;
}

.header > .main-menu > a:hover,
.header > .main-menu > a:focus,
.header > .main-menu > a:active {
    text-decoration            : underline;
}





/* PAGE WRAPPER */
.page-wrapper {
    display                    : flex;
    align-items                : stretch;
    justify-content            : flex-start;
    min-height                 : 100vh;
    width                      : 100%;
}





/* SIDE NAV */
/* .sidenav { */
    /* background-color           : #F8F9FA; */
    /* border-right               : 1px solid #DEE2E6; */
    /* width                      : 225px;
    padding                    : 100px 0;
    position                   : fixed;
    height                     : 100%;
    box-shadow                 : 0 0 5px 0 #DEE2E6;
}

.sidenav > img {
    background-color           : #FFFFFF;
    border                     : 6px solid #FFFFFF;
    border-radius              : 50%;
    box-shadow                 : 0 0 0 1px rgba(0, 0, 0, 0.08);
    display                    : block;
    overflow                   : hidden;
    margin                     : 0 auto 15px auto;
    height                     : 124px;
    width                      : 124px;
}

.sidenav > p.profile-information {
    overflow                   : hidden;
    margin                     : 0 auto 25px auto;
    padding                    : 0 25px;
    width                      : 100%;
}

.sidenav > p.profile-information > span {
    display                    : block;
    text-align                 : center;
    white-space                : nowrap;
    overflow                   : hidden;
    text-overflow              : ellipsis;
    width                      : 100%;
}

.sidenav > p.profile-information > span:nth-child(1) {
    font-size                  : 0.90rem;
    font-weight                : 600;
}

.sidenav > p.profile-information > span:nth-child(2) {
    color                      : #a8a8a8;
    font-size                  : 0.75rem;
}

.sidenav > .page-menu > li > a {
    border-bottom              : 1px dotted #DEE2E6;
    display                    : block;
    font-size                  : 0.80rem;
    padding                    : 20px 25px;
}

.sidenav > .page-menu > li:first-child > a {
    border-top                 : 1px dotted #DEE2E6;
}

.sidenav > .page-menu > li > a:hover,
.sidenav > .page-menu > li > a:focus,
.sidenav > .page-menu > li > a:active {
    background-color           : #F4F4F4;
}

.sidenav > .page-menu > li > a.active {
    color                      : #1485D0;
    font-weight                : 600;
} */





/* CONTAINER */
.container {
    margin                     : 100px 30px 30px 255px;
    position                   : relative;
    width                      : calc(100% - 285px);
    padding                    : 30px;
    background                 : #FFF;
    box-shadow                 : 0px 0px 10px -4px rgba(0, 0, 0, 0.12);
    border-radius              : 5px;
}

.container > .content-heading {
    border-bottom              : 1px dotted #D1D2D4;
    display                    : flex;
    align-items                : flex-end;
    justify-content            : space-between;
    margin-bottom              : 50px;
}

.container > .content-heading > .title {
    padding-bottom             : 25px;
}

.container > .content-heading > .title > h1 {
    color                      : #5A5C69;
    font-size                  : 2rem;
    font-weight                : 500;
    line-height                : 2rem;
    margin-bottom              : 3px;
}

.container > .content-heading > .title > h2 {
    color                      : #1485D0;
    font-weight                : 600;
    line-height                : 1.50rem;
}



.container  > .data-form {
    display                    : flex;
    align-items                : flex-end;
    justify-content            : flex-end;
    gap                        : 10px;
    margin-bottom              : 50px;
}

.container > .data-form > div {
    display                    : flex;
    align-items                : flex-start;
    justify-content            : flex-start;
    flex-direction             : column;
}

.container> .data-form > div > label {
    color                      : #8A8A8A;
    font-size                  : 0.80rem;
    font-weight                : 400;
    text-align                 : left;
    display                    : block;
    margin-bottom              : 5px;
    width                      : 100%;
}

.container > .data-form > div > input#staff_search{
    display                    : block;
    width                      : 300px;
}

#staff_search {
    background-color           : #FFFFFF;
    border                     : 1px solid #C4C7CB;
    border-radius              : 4px;
    color                      : #212121;
    cursor                     : pointer;
    height                     : 45px;
    transition                 : border 0.15s,
                                 box-shadow 0.15s;
    appearance                 : none;
    background-size            : 25px;
    font-size                  : 0.85rem;
    padding-left               : 20px;
    padding-right              : 40px;
    min-width                  : 100px;
}


.container > .data-form > div > i.search-icon {
    background-color           : #e5e5e5;
    border                     : 1px solid #e5e5e5;
    border-radius              : 4px;
    box-shadow                 : 0 1px 1px rgba(0, 0, 0, 0.25);
    color                      : #FFFFFF;
    display                    : flex;
    align-items                : center;
    justify-content            : center;
    font-size                  : 1.75rem;
    font-weight                : 400;
    overflow                   : hidden;
    height                     : 45px;
    width                      : 45px;
    transition                 : background-color 0.15s,
                                 border 0.15s,
                                 color 0.15s;
}

.container > .data-form > div > a#export_csv {
    background-color           : #105FA2;
    border                     : 1px solid #105FA2;
    border-radius              : 4px;
    box-shadow                 : 0 1px 2px rgba(0, 0, 0, 0.25);
    color                      : #FFFFFF;
    cursor                     : pointer;
    display                    : flex;
    align-items                : center;
    justify-content            : center;
    flex-direction             : column;
    font-size                  : 0.80rem;
    font-weight                : 500;
    height                     : 46px;
    transition                 : background-color 0.15s,
                                 border 0.15s,
                                 box-shadow 0.15s,
                                 color 0.15s;
    padding                    : 0 25px;
}


.container > .data-form > div > a#search_button {
    background-color           : #105FA2;
    border                     : 1px solid #105FA2;
    border-radius              : 4px;
    box-shadow                 : 0 1px 2px rgba(0, 0, 0, 0.25);
    color                      : #FFFFFF;
    cursor                     : pointer;
    display                    : flex;
    align-items                : center;
    justify-content            : center;
    flex-direction             : column;
    font-size                  : 0.80rem;
    font-weight                : 500;
    height                     : 46px;
    transition                 : background-color 0.15s,
                                 border 0.15s,
                                 box-shadow 0.15s,
                                 color 0.15s;
    padding                    : 0 25px;
}


.container > .data-form > div > a#export_csv > span:first-child {
    color                      : #FFFFFF;
    cursor                     : pointer;
    display                    : block;
    font-size                  : 0.80rem;
    font-weight                : 600;
    text-align                 : center;
}

.container > .data-form > div > a#export_csv > span:last-child {
    color                      : #FFFFFF;
    cursor                     : pointer;
    display                    : block;
    font-size                  : 0.70rem;
    font-weight                : 500;
    text-align                 : center;
}



.container > .data-form > div > a#export_csv:hover,
.container > .data-form > div > a#export_csv:focus {
    background-color           : #1485D0;
    border                     : 1px solid #1485D0;
    text-decoration            : none;
}

.container > .data-form > div > a#search_button:hover,
.container > .data-form > div > a#search_button:focus {
    background-color           : #1485D0;
    border                     : 1px solid #1485D0;
    text-decoration            : none;
}

.container-list {
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
}

.table {
    /* display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ddd;
    overflow-x: auto; */
    display: table;
    width: 100%;
}

.table-header,
.table-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.table-body {
    display: table-row-group;
}

.table-header {
    display: table-header-group;
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-row {
    display: table-row;
    width: 100%;
}

.table-cell {
    display: table-cell;
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.table-cell {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd; /* Border around each cell */
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
    box-sizing: border-box; /* Ensures padding and borders are included in width */
    min-width: 14%;
}

.table-header .table-cell {
    font-weight: bold;
    background-color: #ffffff;
    padding: 20px;
    width: 50%;
}

.table-body .table-row:nth-child(even) .table-cell {
    background-color: #ffffff; /* Alternate row color */
}

.table-body .table-row:nth-child(odd) .table-cell {
    background-color: #f9f9f9; /* Default row color */
}

input[type=submit].outline,input[type=button].outline,input[type=reset].outline {
    background-color: transparent;
    border: 1px solid #D4E2ED;
    color: #3a94d0;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
    width: 100%;
    cursor: pointer;
    padding: 15px;
    margin-top: 10px;
}


input[type=submit].outline:hover,input[type=submit].outline:focus,input[type=submit].outline:active,input[type=button].outline:hover,input[type=button].outline:focus,input[type=button].outline:active,input[type=reset].outline:hover,input[type=reset].outline:focus,input[type=reset].outline:active {
    background-color: #3a94d0;
    color: #fff;
    border: 1px solid #3A94D0
}

.center-horizontal {
    margin: 0px auto;
}

body {
    display: none;
}


/* MOBILE DEVICES */
@media screen and (max-width: 600px) {
    

}





/* TABLET DEVICES */
@media screen and (min-width: 601px) {

}





/* LARGER DEVICES */
@media screen and (min-width: 1201px) {

}