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

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

.team_schedule_listing_body {
    background-color: #303853;
    width: 80%;
    height: calc(100% - 70px);
    padding: 0 10px;
    border-radius: 10px 10px 0 0;
    display: none;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    overflow-y: auto;
    color: #EDEFFC;
}

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

.created_schedule_frame_to_view {
    background-color: #212542;
    width: 90%;
    min-height: 50px;
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    color: #EDEFFC;
    font-size: large;
    font-weight: 700;
    user-select: none;
}

.created_schedule_frame_to_view_buttons_backer_margin {
    background-color: red;
    width: 100px;
    margin-left: 20px;
}

.created_schedule_frame_to_view_buttons_backer {
    background-color: transparent;
    width: 150px;
    height: 100%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
}

.created_schedule_view_button {
    background-image: url(../icons/checked.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.created_schedule_editor_button {
    background-image: url(../icons/editor.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.created_schedule_access_button {
    background-image: url(../icons/key.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.created_schedule_delete_button {
    background-image: url(../icons/bin.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.load_member_schedule_button,
.load_admin_schedule_button {
    background-color: #303853;
    height: 30px;
    border: none;
    outline: none;
    color: #EDEFFC;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
    cursor: pointer;
}













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

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

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

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

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