﻿#edit-holidays-container {
    box-sizing: border-box;
    overflow: hidden;
}
#add-holiday, #edit-holiday {
    width: 90px;
}
#edit-holiday-container {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
}
#edit-day-modal {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#edit-day-container {
    box-sizing: border-box;
    width: 100%;
    height: 250px;
    padding: 16px 0px 0px 10px;
    overflow: visible;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #ccc;
}



#holidays-container {
    box-sizing: border-box;
    width: 100%;
    height: 450px;
    padding: 16px 0px 0px 0px;
    overflow: visible;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #ccc;
}
#holiday-container {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 12px;
    overflow: visible;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #ccc;
}

#holidays-container-text {
    overflow: visible;
    font-family: "Open Sans", sans-serif;
    color: var(--Iris_Primary, #24303b);
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 700;
    font-style: normal;
    margin: 5px 0px 10px 8px;
}

.calendar-edit-button{
    width: 130px;
}

#calendar-container {
    /*width: 100%;*/
    /*max-width: 940px;
    min-width: 940px;*/
    height: 650px;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    margin-left: 5%;
    margin-right: 5%;
}
.calendar-top-bar {
    /* max-width: 1200px; */
    margin: 0 auto;
    margin-left: 5%;
    margin-right: 5%;
}
.cal-header-row {
    width: 100%;
    height: 25px;
    margin-bottom: 7px;
}
.calendar-day-header {
    height: 100%;
    margin-right: 3px;
    margin-bottom: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #ccc;
    display: inline-block;
}
.cal-width-full {
    width: 13.5%;
}
.cal-width-partial {
    width: 19.3%;
}
.cal-day {
    height: 90px;
    display: inline-block;
    margin-right: 3px;
    margin-bottom: 5px;
    background-color: lightgray;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.cal-menu-set {
    background-color: #1199EE;
}
.cal-holiday {
    background-color: rgba(252, 211, 146, 0.5);
}
.cal-day-top {
    width: 100%;
    height: 40%;
}
.cal-day-middle {
    width: 100%;
    height: 22px;
    border-bottom: 1px solid white;
}
.cal-day-bottom {
    width: 100%;
    height: 25px;
    margin-top: 7px;
}
.cal-day-date {
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    align-items: center;
    padding: 4px 0px 5px 0px;
    overflow: visible;
    background-color: #ffffff;
    border-radius: 20px;
    margin-top: 7px;
    margin-left: 7px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
    float: left;
}
.cal-day-date-text {
    width: 100%;
    height: 21px;
    overflow: visible;
    font-family: "Open Sans", sans-serif;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}
.cal-day-options {
    float: right;
    margin-top: 4px;
    margin-right: 3px;
}
.cal-day-text-white {    
    overflow: visible;
    font-family: "Open Sans", sans-serif;
    color: var(--White, #ffffff);
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    text-align: left;
}
.cal-day-text-blue {
    overflow: visible;
    font-family: "Open Sans", sans-serif;
    color: var(--Iris_Secondary, #0b61bd);
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    text-align: left;
}
.cal-day-text-dark {
    overflow: visible;
    font-family: "Open Sans", sans-serif;
    color: var(--Iris_Primary, #24303b);
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    text-align: left;
}
.arrow-container {
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: visible;
    background: var(--White, #ffffff);
    border-radius: 40px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.cal-selected {
    border: 2px solid blue;
}

#calendar-add-holiday {
    background-color: var(--Iris_Primary, #24303b);
    color: white;
    font-family: "Open Sans", sans-serif;
    width: auto;
}

#calendar-edit-calendar {
    background-color: var(--Iris_Secondary, #0b61bd);
    color: white;
    font-family: "Open Sans", sans-serif;
    width: auto;
}

#clear-selected-days {
    background-color: var(--Iris_Primary, #24303b);
    color: white;
    font-family: "Open Sans", sans-serif;
    width: auto;
}

#calendar-edit-days {
    background-color: var(--Iris_Primary, #24303b);
    color: white;
    font-family: "Open Sans", sans-serif;
    width: auto;
}

#calendar-weekend-toggle {
    width: 215px;
    display:inline-block;
}

.cal-warning-text {
    color: red;
}

.edit-day-options {
    display: flex;
    flex-direction: column;
}

.edit-day-checkbox {
    display: flex;
    flex-direction: row;
    margin: 2px;
    justify-content: flex-start;
    align-items: baseline;
}

.edit-day-input {
    width: 40px;
    max-width: 60px;
}

.edit-day-menu-selection-container {
    width: 45%;
    max-height: 200px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0px 0px 0px;
}

.reccuring-selection-container {
    display: flex;
    align-items: flex-start;
    bottom: 75%;
    width: 50%;
    left: 50%;
    position: sticky;
    padding: 15px 0px 0px 0px;
    flex-direction: column;
}

.recurring-selection {
    display: flex;
    position: relative;
    left: -15px;
    align-items: baseline;
}

.calendar-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.dialog-info-img {
    cursor: pointer;
    color: var(--Iris_Primary, #24303b);
}