.flashing {
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 100% {
        background-color: transparent;
        color: #EDEFFC;
    }
    50% {
        background-color: rgb(253, 215, 0);
        color: #000;
    }
}

.sick_leaves_backer {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 40px);
    display: none;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.sick_leaves_header_view {
    background-color: transparent;
    width: 90%;
    height: 50px;
    margin-top: 20px;
    display: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.sick_leaves_add_button {
    background-color: #303853;
    height: 35px;
    padding: 0 20px;
    border: none;
    outline: none;
    color: #EDEFFC;
    border-radius: 5px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
}

.sick_leaves_add_button:hover {
    background-color: #3e4a6e;
}

.sick_leaves_listing_body {
    background-color: #303853;
    width: 90%;
    height: calc(100% - 110px);
    padding: 20px 0;
    gap: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    color: #EDEFFC;
}

.sick_leaves_item {
    background-color: #306674;
    width: 90%;
    padding: 10px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.sick_leaves_item:hover {
    background-color: #3e7a89;
}

.sick_leaves_item_content {
    background-color: transparent;
    height: 100%;
    width: calc(100% - 120px);
    padding: 0 10px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.sick_leaves_content_left {
    background: rgba(255, 0, 0, 0.308);
    min-width: fit-content;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 165, 0, .2) inset;
    white-space: nowrap;
}

.sick_leaves_flashing_icon {
    min-width: 10px;
    min-height: 10px;
    background: orange;
    border-radius: 50%;
    box-shadow: 0 0 0 orange;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.8)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 165, 0, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0)
    }
}

.sick_leaves_status_text {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #f5e1c4;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(255, 165, 0, .4);
}

.sick_leaves_content_right {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 20px;
}

.sick_leaves_content_right_date {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(168, 168, 168, 0.212);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
}

.sick_leaves_content_right_fromto {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 10px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.212);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    white-space: nowrap;
}

.sick_leaves_content_right_text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sick_leaves_item_options {
    height: 100%;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sick_leaves_item_view {
    background-color: #C3EEB7;
    border: none;
    outline: none;
    padding: 8px 22px;
    border-radius: 10px;
    cursor: pointer;
}

.sick_leaves_item_view:hover {
    background-color: #A8DFA1;
}





















.sick_leaves_pop_screen {
    background-color: rgba(6, 10, 22, 0.55);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 67878860;
}

.sick_leaves_pop_card {
    background-color: #303853;
    width: 100%;
    max-width: 500px;
    padding: 50px 20px;
    gap: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeInCard 0.4s ease;
}

.sick_leaves_pop_card_upper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}

.sick_leaves_user_aligner {
    position: relative;
    width: 400px;
}

.sick_leaves_add_target_user {
    width: calc(100% - 48px);
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
}

.calendar_aligner {
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
}

.calendar_aligner_left,
.calendar_aligner_right {
    width: fit-content;
}

.calendar_title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.sick_leave_month,
.sick_leave_from,
.sick_leave_to {
    background-color: #EDEFFC;
    width: calc(100% - 20px);
    height: 40px;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 0 10px;
    border-radius: 5px;
}

.sick_leaves_info {
    width: 400px;
    font-size: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sick_leaves_button_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
}

.sick_leaves_cancel,
.sick_leaves_confirm {
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    color: white;
}

.sick_leaves_cancel {
    background-color: rgb(226, 56, 56);
}

.sick_leaves_cancel:hover {
    background-color: rgb(165, 41, 41);
}

.sick_leaves_confirm {
    background-color: rgb(54, 160, 54);
}

.sick_leaves_confirm:hover {
    background-color: rgb(38, 114, 38);
}

.sick_leaves_users_list {
    position: absolute;
    top: 20px;
    left: 350px;
    width: 200px;
    min-height: 160px;
    max-height: 460px;
    overflow-y: auto;
    background-color: #191D17;
    padding: 3px 0;
    z-index: 1000;
    display: none;
    font-family: sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    user-select: none;
}

.sick_leaves_users_list div {
    padding: 6px 10px;
    cursor: pointer;
    color: #fff;
    font-weight: 550;
    margin: 5px 0;
    white-space: nowrap;
    font-family: sans-serif;
    border-radius: 10px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.sick_leaves_users_list div:hover {
    background-color: #30342D;
    color: #fff;
}












.sick_leaves_listing_body::-webkit-scrollbar {
    width: 10px;
}

.sick_leaves_listing_body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.sick_leaves_listing_body::-webkit-scrollbar-thumb {
    background: #1a1f30;
    border-radius: 10px;
    border: none;
}

.sick_leaves_listing_body::-webkit-scrollbar-thumb:hover {
    background: #5b6688;
}

.sick_leaves_listing_body::-webkit-scrollbar-corner {
    background: #e0e0e0fd;
}



.sick_leaves_users_list::-webkit-scrollbar {
    width: 10px;
}

.sick_leaves_users_list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.sick_leaves_users_list::-webkit-scrollbar-thumb {
    background: #1a1f30;
    border-radius: 10px;
    border: none;
}

.sick_leaves_users_list::-webkit-scrollbar-thumb:hover {
    background: #5b6688;
}

.sick_leaves_users_list::-webkit-scrollbar-corner {
    background: #e0e0e0fd;
}