:root {
    --primary-color: #3558a2;
}

.blue-color {
    color: var(--primary-color) !important;
}

.blue-bg-sidebar {
    background: var(--primary-color);
}

.blue-bg {
    background: var(--primary-color) !important;
}

.blue-bg:hover {
    background: rgb(96 165 250) !important;
}

.logo-container {
    width: 14.3%;
    /*max-width: 140px;*/
}

@media screen and (max-width: 1023px) {
    .logo-container {
        width: 100%;
        max-width: 140px;
    }
}

.disabled-button {
    background: gray;
}

.login-container {
    background: url("../assets/images/login-background.jpg") no-repeat center;
    background-size: auto;
}

.login-form {
    background-color: #ffffffdd !important;
}

.custom-hr-login-form {
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
}

.powered-by {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.IST {
    font-weight: bold;
    color: var(--primary-color);
}


.weekday-selector {
}

.weekday-checkboxes {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 0px;
    width: 300px;
}

.weekday-checkboxes input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.weekday-container {
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    width: 100%;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
}

.weekday-checkboxes label {
    width: 100%;
    aspect-ratio: 1/1;
    justify-content: center;
    display: flex;
    /*z-index: 9999;*/
    align-items: center;
    align-content: center;

    cursor: pointer;
}

.weekday-checkboxes label:hover {
    background-color: #e1e1e1;
}

.weekday-checkboxes input[type="checkbox"]:checked + label {
    background-color: var(--primary-color);
    color: #fff;
}

.weekday-checkboxes input[type="checkbox"]:checked + label:hover {
    background: rgb(96 165 250);
}
