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

.declare_holiday_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: 1180;
}

.declare_holiday_card_for_admins {
    background-color: #2b3260;
    width: 350px;
    height: 400px;
    border-radius: 10px;
    border: 1px solid #303853;
    box-shadow: 0 0 40px 3px #000000;
    animation: fadeInCard 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.declare_holiday_card_name {
    color: #F9F9FB;
    font-family: roboto;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.declare_holiday_calendar {
    background-color: #fff;
    width: 260px;
    height: 30px;
    color: black;
    border-radius: 5px;
    padding: 0 10px;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

.declare_holiday_choose_role {
    background-color: #fff;
    width: 280px;
    height: 30px;
    color: black;
    border-radius: 5px;
    padding: 0 10px;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

.declare_holiday_comment {
    background-color: #fff;
    width: 260px;
    height: 30px;
    color: black;
    border-radius: 5px;
    padding: 0 10px;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

.declare_holiday_button_container {
    background-color: transparent;
    width: 280px;
    height: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.declare_holiday_calcel,
.declare_holiday_delete,
.declare_holiday_confirm {
    width: 80px;
    height: 100%;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    color: white;
}

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

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

.declare_holiday_delete {
    background-color: rgb(87, 24, 24);
}

.declare_holiday_delete:hover {
    background-color: rgb(83, 3, 3);
}

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

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