/* --------------------------------------------- LFPS Fonts */
/* LFPS Bold */
@font-face {
    font-family: LFPSBold;
    src: url("../fonts/LFPSStandard-Bold.eda96ebd8cb4.ttf") format('truetype');
}

/* LFPS Standard */
@font-face {
    font-family: LFPSStandard;
    src: url("../fonts/LFPSStandard-Regular.4af168917fb9.ttf") format('truetype');
}


/* --------------------------------------------- General Styling Setup */
header {
    background-color: black;
}

body {
    font-family: 'LFPSStandard', sans-serif;
    background-color: black;
    color: #20C4F4;
}

.bold-text {
    font-family: 'LFPSBold', sans-serif;
}

.text-deco-none {
    text-decoration: none;
}

#main-content {
    min-height: auto;
    overflow: hidden;
}

.text-align-end {
    text-align: end;
}

.text-white {
    color: white;
}

/* --------------------------------------------- Containers */
.header-container {
    padding-top: 184px;
}

.workload-container {
    margin-top: 45px;
    height: auto;
}

.outer-traffic-light {
    height: 90%;
    width: 90%;
    border-radius: 50px;
    background-color: white;
    box-sizing: border-box;
    margin: 50px;
    z-index: 1;
}

.inner-traffic-light {
    height: 90%;
    width: 90%;
    border-radius: 50px;
    background-color: black;
    box-sizing: border-box;
    z-index: 2;
}

.traffic-light-colour {
    height: 30%;
    width: 70%;
    border-radius: 50%;
    background-color: #232b2b;
    z-index: 3;
    margin: 6% 14%;
}

/* --------------------------------------------- Calendar Styling */
.calendar-size{
    border: 2px solid #20C4F4;
}
  
.cell-border{
    border: 1px solid #20C4F4;
    min-height: 150px;
}

.truncate{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* --------------------------------------------- Animation & Effects */
#main-content {
    transition: margin-top 0.3s ease-in-out;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.loading-overlay.show {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

/* --------------------------------------------- Media Queries */
/* Small screens */
@media (min-width: 448px) {
    .header-container {
        padding-top: 274px;
    }
}

/* Medium screens */
@media (min-width:768px) {
    /* #main-content {
        height: calc(100vh - 184px);
        overflow: auto;
    } */

    .header-container {
        padding-top: 328px;
    }
}

/* Large screens */
@media (min-width:1024px) {
    .header-container {
        padding-top: 156px;
    }
}
