:root {
    /* Base Colors */
    --black-color: #242424;
    --gray-color: #676767;
    --white-color: #ebebeb;
    --blue-color: #1A73E8;
    /* Black Color Variations */
    --black-color-light: #2e2e2e; /* Lighter black */
    /* Gray Color Variations */
    --gray-color-light: #a0a0a0; /* Lighter gray */
    --gray-color-dark: #4a4a4a; /* Darker gray */
    /* Blue Color Variations */
    --blue-color-light: #4c8ff0; /* Lighter blue */
    --blue-color-dark: #1557b0; /* Darker blue */
}

main.main-content {
    height: 100vh !important;
}

/* CUSTOM SPINNER LOADER */
.custom-loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#1557b0 94%,#0000) top/8px 8px no-repeat, conic-gradient(#0000 30%,#165bff);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.blockUI.blockOverlay {
    z-index: 9999 !important;
}

.blockUI.blockMsg.blockPage {
    padding: 8px !important;
    color: #343434ff !important;
    border: none !important;
    border-radius: 15px;
    font-size: 10pt;
    z-index: 9999999 !important;
}

/* CUSTOM INPUT FILE PICKER STYLES */
.custom-input-file-picker {
    text-align: center !important;
    width: 100%;
}

    .custom-input-file-picker input {
        display: none;
    }

    .custom-input-file-picker label {
        border: 2px dashed var(--gray-color-light);
        border-radius: 10px;
        width: 100%;
        text-align: center !important;
        cursor: pointer;
        padding: 10px 15px;
    }

        .custom-input-file-picker label:hover {
            border-color: var(--blue-color);
            color: var(--blue-color);
            transition: all .4s;
        }

/** Modal Styles */
.modal .modal-header {
    border: none;
    padding: 8px 10px;
    background-color: var(--gray-color-dark);
}

    .modal .modal-header p,
    .modal .modal-header h1,
    .modal .modal-header h2,
    .modal .modal-header h3,
    .modal .modal-header h4,
    .modal .modal-header h5,
    .modal .modal-header h6,
    .modal .modal-header span,
    .modal .modal-header div {
        color: var(--white-color);
    }

.modal .modal-footer {
    border: none;
    padding: 2px 10px;
}

/** Custom Alert Modal */
.custom-alert-modal .modal-dialog {

}

.custom-alert-modal .modal-content {
    border: none !important;
    border-radius: 15px;
}

.custom-alert-modal .modal-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 2px;
    position: relative;
    background-color: var(--white-color);
    text-align: center !important;
    display: block !important;
}

.custom-alert-modal .modal-header .modal-title {
    color: var(--gray-color-dark);
    font-weight: 500;
}

    .custom-alert-modal .modal-header button.btn-close {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 10px;
        background-color: var(--black-color);
        border-radius: 50px;
    }

.custom-alert-modal .modal-body {
    text-align: center;
}

.custom-alert-modal .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

    .drop-area.dragover {
        border-color: #000;
        background-color: #f0f0f0;
    }

.nav.nav-pills .nav-link.active {
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    border: solid 1px #dddddd;
}


/** CUSTOM INPUT FORM STYLES */
.custom-input-form select {
    cursor: pointer !important;
}

.custom-input-form p, label {
    color: var(--gray-color-dark);
    font-size: 11pt;
    margin-bottom: 2px !important;
    font-weight: 500;
}

.custom-input-form select,
.custom-input-form input,
.custom-input-form textarea {
    width: 100%;
    border: 1px solid var(--gray-color-light) !important;
    border-radius: 8px;
    padding: 8px 10px;
}

.custom-input-form select::placeholder,
.custom-input-form input::placeholder,
.custom-input-form textarea::placeholder {
    color: var(--gray-color-light) !important;
}

.custom-input-form:hover>p,
.custom-input-form:hover>label {
    color: var(--blue-color) !important;
}

.custom-input-form:hover>select,
.custom-input-form:hover>input,
.custom-input-form:hover>textarea {
    border-color: var(--blue-color) !important;
}

.custom-input-form:focus-within>select,
.custom-input-form:focus-within>input,
.custom-input-form:focus-within>textarea {
    border-color: var(--blue-color) !important; 
}

.custom-input-form:focus-within p,
.custom-input-form:focus-within label {
    color: var(--blue-color) !important;
}

.btn-outline-light.btn-full-screen:hover {
    background: #4a4a4a;
    border-color: #000;
}


.form-check:not(.form-switch) .form-check-input.custom[type=checkbox] {
    padding: 18px !important;
    border-radius: 50% !important;
    border: solid 1px var(--gray-color-light) !important;
}

.form-check:not(.form-switch) .form-check-input.custom[type=checkbox]:after {
    position: relative !important;
    opacity: 1;
    font-size: 15px;
    margin-top: 2px;
}

.form-check:not(.form-switch) .form-check-input.custom[type=checkbox].form-check-sm {
    padding: 12px !important;
}

.form-check:not(.form-switch) .form-check-input.custom[type=checkbox].form-check-sm:after {
    font-size: 13px;
    margin-top: 1px;
}

.form-check:not(.form-switch) .form-check-input.custom[type=checkbox].form-check-lg {
    padding: 24px !important;
}

.form-check:not(.form-switch) .form-check-input.custom[type=checkbox].form-check-lg:after {
    font-size: 25px;
    margin-top: 1px;
}


/** CUSTOM BUTTON STYLES */
button.btn.btn-sm i {
    font-size: 12px;
}