.calcbtn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    background-color: white;
    font-size: 20px;
    margin-bottom: 10px;

    padding: 10px 15px;
    /* 패딩 추가 */
    border-radius: 5px;
    /* 모서리 둥글게 */
    cursor: pointer;
    /* 커서 포인터 */
    transition: background-color 0.3s;
    /* 배경 색상 전환 효과 */
}

.calcbtn:hover {
    background-color: #0056b3;
    /* 마우스 오버 시 색상 변경 */
}

.cal_table {
    width: 100%;
    /* border-collapse: collapse; */
}

.cal_table th {
    font-size: 17px;
    background-color: #00bfff;
    color: white;
    padding: 5px;
}

.cal_table td {
    width: 42px;
    height: 36px;
    font-size: 13px;
    text-align: center;
    border: 0.5px solid #eeaaeeaa;
    transition: background-color 0.3s;
}

.cal_table td:hover {
    background-color: #85b8ff;
    /* 셀 마우스 오버 시 색상 변경 */
}

.cal_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calhead {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.cal_acc {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 769px) {
    .calhead {
        height: 38px;
    }

    .cal_acc {
        width: 58%;
        font-size: 12px;
    }

    .calcbtn{
        font-size: 16px;
        margin-bottom: 0px;
        padding: 5px 5px;
    }

    .cal_table th {
        width: 30px;
        height: 30px;
        font-size: 8px;
        padding: 5px;
    }

    .cal_table td {
        width: 30px;
        height: 30px;
        font-size: 8px;
        padding: 5px;
    }
}

.cal_item {
    text-align: center;
    font-size: 18px;
    display: inline-block;
    overflow: hidden;
}

.today {
    background-color: purple;
    /* 오늘 날짜 강조 색상 */
    color: white;
    /* 텍스트 색상 */
    border-radius: 5px;
    /* 둥글게 */
}

#today {
    width: 160px;
    margin-right: 60px;
    margin-bottom: 60px;
    font-weight: bold;
}

#week {
    font-size: 30px;
}

#date {
    font-size: 70px;
}

.top-bar {
    display: inline;
    font-weight: bold;
}

.today-circle {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border-width: 3px;
    background-color: purple;
    color: white;
}

.click-circle {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: purple;
}