.choose-year {
    display: flex;
    justify-content: space-between;
}

.select-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

#id {
    width: 240px;
}

.calendarBtn {
    min-width: 60px;
    box-sizing: border-box;
    padding: 0 10px;
    outline: none;
    height: 40px;
    border-radius: 8px;
    color: #c69c6d;
    border: none;
}

#showCalendarBtn{
    width: 83px;
    height: 38px;
    border-radius: 5px;
    font-size: 20px;
    background-color: #fff;
    border: 0.58px solid #c69c6d;
}

#more {
    display: flex;
    align-items: center;
    background-color: rgba(198,156,109,0.149);
    padding: 0 12px 0 0;
    font-size:16px;
}

#more > img {
    width: 44px;
    margin-right: 5px;
    margin-left:-3px;
}

.tips {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
}

.tips > div {
    display: flex;
    gap: 5px;
}

.tips > :first-child {
    border-right: 1px solid #000;
    padding-right: 15px
}

.border-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #000;
    display: inline-block;
}

.border-circle + span {
    margin-right: 10px;
}

.color-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.calendar-container {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}