<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.date {
    width: 20% !important;
}

.day {
    width: 32% !important;
}

.shift {
    width: 12% !important;
}

.container {
    overflow: visible;
    /* Add padding to avoid margin collapse issues */
    padding-top: 10px;
    margin-bottom: 50px;
}

.stickyTop { 
    position: sticky;
    position: -webkit-sticky; /* For Safari */
    top: 30px;
    z-index: 100 !important;
}


@media (max-width:650px) {
    .main, .contentbox {
        width: 100% !important;
        padding: 0;
    }

    .content {
        width: 100%;
        padding: 0;
    }
    
    .tablehead {
        width: 100% !important;
    }
}

.outer-head, .outer-shift {
    padding: 5px !important;
}

.head, .shiftitem {
    background: var(--bg-color-lighter);
    border-radius: var(--border-radius);
    color: white
}

.head {
    background: var(--bg-color-light); 
    color: var(--ps-color); 
    border: 1px solid var(--ps-color); 
}

.shiftitem:empty {
    display: none;
}

.dayshift {
    background: #b58d27;
}

.night {
    background: rgb(32,32,32);
    background: linear-gradient(0deg, rgba(0,53,92,1) 0%, rgba(0,53,92,1) 50%, transparent 100%);
    border-radius: 0px !important;
    
}

.free {
    background: transparent;
}

.endnight {
    position: relative;
    background: rgb(32,32,32);
    background: linear-gradient(0deg, transparent 0%, rgba(0,53,92,1) 50%, rgba(0,53,92,1) 100%);
    border-radius: 0px !important;
}

.endnight_after {
    position: absolute;
    height: 50px;
    background: linear-gradient(0deg, transparent 0%, rgba(0,53,92,1) 25%, rgba(0,53,92,1) 50%, rgba(0,53,92,1) 75%, transparent 100%);
    top: -30px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablecontent {
    overflow: hidden;
}

.datebtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.datebtn {
    width: 40px;
    height: 40px;
    font-size: 15px;
    background: transparent;
    border: 1px solid var(--ps-color-dark) !important;
}

.leftdate {
    border-radius: 10px 0px 0px 10px;
}

.rightdate {
    border-radius: 0px 10px 10px 0px;
}

.datebtn:hover {
    cursor: pointer;
}

.datebtn:focus,
.datebtn:active,
.datebtn:hover,
.datebtn {
    outline: none;
    border: none;
    box-shadow: none;
}

.datetext {
    padding: 0px 15px;
    border-top: 1px solid var(--ps-color-dark) !important;
    border-bottom: 1px solid var(--ps-color-dark) !important;
}

.calendarwrapper {
    background: var(--bg-color-lighter);
    color: var(--ps-color) !important;
    border: 1px solid var(--ps-color);
    border-radius: 10px;
}

.calendarbox {
    height: 40px;
    color: var(----text-color);
    font-size: 20px;

}

.fleft {
    left: 0;
}

.regular-day {
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--ps-color) !important;
}

.kw-text {
    color: rgba(255, 255, 255, 0.5) !important;
}

.notesfield {
    width: 100%;
    background: red;
}

html,
body {
    background: var(--background-color);
}

:root {
    --background-color: #101010;

    --text-color: #fff;
}

</pre></body></html>