.colors {
    background-color: #212542;
    background-color: #303853;
    background-color: #EDEFFC;
    background-color: #C3EEB7;
    background-color: #86c973;
}

.requests_for_admins_flashing {
    animation: flashGreen 0.5s infinite alternate;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

@keyframes flashGreen {
    from {
        background-color: transparent;
    }

    to {
        background-color: green;
    }
}

.requests_list_screen_backer_for_admins {
    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: 1160;
}

.requests_list_card_for_admins {
    background-color: #303853;
    width: 70%;
    height: 70%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    animation: fadeInCard 0.4s ease;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.requests_list_lower {
    position: relative;
    background-color: transparent;
    width: 100%;
    height: 10px;
    display: flex;
    align-items: start;
    justify-content: end;
}

.exit_requests_page {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: rgb(226, 56, 56);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    font-family: roboto;
    border: none;
    outline: none;
    color: white;
    transition: ease 0.3s;
    user-select: none;
    cursor: pointer;
    transform: rotate(45deg);
}

.exit_requests_page:hover {
    background-color: rgb(165, 41, 41);
    scale: 1.1;
}

.requests_listing_for_admins {
    background-color: #5b6688;
    width: calc(100% - 80px);
    height: calc(100% - 60px);
    display: block;
    overflow-y: auto;
    margin-top: 20px;
    border-radius: 5px;
    padding: 0 20px;
    color: #C3EEB7;
}

.request_date_shower {
    width: fit-content;
}

.request_frame_for_swaps {
    background-color: #86c973;
    min-height: 30px;
    width: calc(100% - 20px);
    font-family: roboto;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
    color: black;
}

.request_frame_for_swaps>* {
    pointer-events: none;
}

.requested_swap_dragable {
    background-color: #5b6688;
    width: 250px;
    height: 250px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 50px;
    position: absolute;
    display: none;
    z-index: 1300;
}

.requested_swap_dragable_buttons_backer {
    background-color: transparent;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    border-top: 1px solid white;
}

.swap_request_reject {
    color: #EDEFFC;
    background-color: rgb(226, 56, 56);
    width: 100px;
    height: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
}

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

.swap_request_approve {
    color: #EDEFFC;
    background-color: rgb(54, 160, 54);
    width: 100px;
    height: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
}

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

.requested_swap_dragable_hand {
    background-color: #303853;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    font-family: roboto;
    font-weight: 700;
    color: #C3EEB7;
    user-select: none;
    cursor: grab;
}

.swap_request_close {
    color: black;
    background-color: orange;
    width: 20px;
    height: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    margin-right: 10px;
    user-select: none;
    cursor: pointer;
}

.swap_request_close:hover {
    background-color: rgb(160, 105, 3);
}

.requested_swap_dragable_information {
    background-color: #5b6688;
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.requested_swap_dragable_requester_name_shower,
.requested_swap_dragable_requester_shift_shower,
.requested_swap_dragable_recipient_name_shower,
.requested_swap_dragable_recipient_shift_shower {
    background-color: transparent;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: roboto;
    line-height: 1;
    font-weight: 700;
    color: black;
}

.requested_swap_dragable_recipient_name_shower {
    margin-top: 15px;
}
























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

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

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

.requests_listing_for_admins::-webkit-scrollbar-thumb:hover {
    background: #3d4868;
}

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