.request_swap_backer_screen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: none;
    background-color: #212542;
}

.request_swap_backer_screen_header {
    background-color: transparent;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #303853;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    color: #EDEFFC;
    font-weight: 800;
    font-size: x-large;
    user-select: none;
}

.request_swap_backer_screen_footer {
    background-color: transparent;
    width: 100%;
    height: 80px;
    border-top: 1px solid #303853;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
}

.request_swap_cancel,
.request_swap_confirm {
    background-color: rgb(226, 56, 56);
    width: 100px;
    height: 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: white;
    transition: ease 0.3s;
    user-select: none;
    cursor: pointer;
}

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

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

.request_swap_confirm:hover {
    background-color: rgb(38, 114, 38);
    scale: 1.1;
}

.request_swap_backer_screen_workplace {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 140px);
    display: block;
}

.request_swap_card {
    background-color: #303853;
    width: 400px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.margin_element_78234 {
    width: calc(75% + 20px);
    min-height: 20px;
}

.swap_inputs_information {
    font-family: roboto;
    width: calc(75% + 20px);
    color: white;
}

.swap_requester_name {
    font-family: roboto;
    background-color: white;
    width: 75%;
    height: 40px;
    border: 1px solid grey;
    border-radius: 5px;
    padding: 0 10px;
    pointer-events: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: medium;
}

.requester_shift_selector,
.request_recipient_shift_selector,
.request_recipient_selector {
    font-family: roboto;
    background-color: white;
    width: calc(75% + 22px);
    height: 40px;
    border: 1px solid grey;
    border-radius: 5px;
    font-size: medium;
}

.swap_approve_text {
    background-color: #212542;
    width: 250px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    font-size: large;
    color: white;
    transition: 0.3s ease;
    font-weight: 700;
    user-select: none;
    cursor: pointer;
}

.swap_approve_text:hover {
    scale: 1.1;
}
