

/* ############### dashboard_overview ########################## */


#dashboard_overview
{
    display: flex;
    justify-content: center;
    width: 100%;
}


#dashboard_overview .background {
    position: relative;
    max-width: 700px;
    width: 100%;
    min-height: 100%; 
    background-color: #241332;
}

#dashboard_overview .content {
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
    min-height: 100%; 
}


#dashboard_overview .week_container {
    display: flex;
    flex-direction: column;
    min-height: 100%; 
    /* background-color: red; */
    color: white;
    margin: 15px;
}


#dashboard_overview .week_header {
    background-color: #392A46;
    height: 80px;
    border-radius: 40px 40px 0 0;
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px;
    padding-right: 8px;
}

#dashboard_overview .weekcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    overflow: hidden;
}

#dashboard_overview .icon_from_to, .icon_week{
    align-items: center;
    font-size: 1em;
}

#dashboard_overview .weekcaption.from, .weekcaption.to{
    margin-left: 30px;
}

#dashboard_overview .week_header .day_name {
    font-size: 1.1em;
}

#dashboard_overview .week_header .date {
    font-size: 1.1em;
}

#dashboard_overview .day {
    background-color: #4D3C63;
}


#dashboard_overview .day_header {
    margin-top: 2px;
    margin-bottom: 2px;
    display: grid;
    grid-template-columns: 65px 1fr 65px;
    height: 65px;
}


#dashboard_overview .day_header div{
    display: flex;
    align-items: center;
    color: #CCCCCC;
}


#dashboard_overview .day .caption {
    justify-content: center;
    font-weight: 600;
    font-size: 1.1em;
}

#dashboard_overview .day .conclusion {
    font-weight: 500;
    line-height: 1.3em;
}

#dashboard_overview .day .icon {
    justify-content: center;
    font-size: 1.2em;
}


#dashboard_overview .availability {
    background-color: #604F81 !important;
    padding-top: 5px;
    margin-top: 3px;
}

#dashboard_overview .availability.notavailable {
    background-color: ff0000;
}

#dashboard_overview .availability:nth-child(2) {
    border-top: 2px solid #3C2C4A;
}

#dashboard_overview .availability .text {
    text-align: center;
    font-size: 0.9em;
    font-weight: 500;
    padding-bottom: 5px;
    overflow: hidden;
}

#dashboard_overview .availability .booking_row {
    margin-left: 30px;
}

#dashboard_overview .booking_row {
    display: grid;
    padding: 5px;
    grid-template-columns: 50px 1fr;
    background-color: #4D3C63;
    margin-top: 2px;
}

#dashboard_overview .booking_row .notconfirmed {
    background-color: #adad00;
}
#dashboard_overview .booking_row .ismanualbooking {
    background-color: #0366d6;
}


#dashboard_overview .booking_icon{
    display: flex;
    justify-content: center;
    align-items: center;
}

#dashboard_overview .booking_text{
    display: flex;
    font-size: 0.8em;
    font-weight: 500;
    flex-direction: column;
    justify-content: center;
}






#dashboard_overview .week_footer {
    background-color: #392A46;
    height: 40px;
    border-radius: 0 0 40px 40px;
}


/* ------------------ dashboard_overview ---------------------- */
