/* calendar.css */
#calendar-container {
    display: flex;
    width: 238px;
    height: 168px;
    /*! border: 1px solid #ddd; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    background-color: #ffffff;
    overflow: hidden;
    /*! background: #232323; */
}

.sidebar {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /*! padding: 10px; */
    box-sizing: border-box;
    /*! border-right: 1px solid #ddd; */
    background-color: #374bc921;
    border-radius: 12px;
}

.date-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #232323;
}

.current-week {
    font-size: 14px;
}

.current-weekday {
    font-size: 14px;
    /*! margin-top: 5px; */
}

.current-date {
    font-size: 36px;
    margin-top: -20px;
}

.lunar-date {
    font-size: 12px;
    color: #232323;
    text-align: center;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    /*! background-color: #f0f0f0; */
    overflow-y: auto;
}

.weekdays {
    display: flex;
    width: 100%;
    justify-content: space-around;
    /* background-color: #f0f0f0; */
    /* padding: 5px; */
    box-sizing: border-box;
    /* font-size: large; */
    font: -webkit-control;
}

.weekday-item {
    font-size: 10px;
    color: #555;
    text-align: center;
    width: 14.2857%;
    /*! font-size: small; */
}

.dates-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.date-item {
    font-size: 10px;
    margin: 0 2px;
    /*! padding: 2px; */
    color: #555;
    /* background-color: #e0e0e0; */
    border-radius: 3px;
    text-align: center;
    width: calc(100% / 7 - 4px);
    box-sizing: border-box;
}

.empty-item {
    background-color: transparent;
}

.current-day {
    background-color: #1e90ff;
    color: #ffffff;
    /* padding: 0 2px; */
}
