/* 달력 전체 크기 키우기 */
.ui-datepicker {
    font-size: 30px; /* 기본은 보통 11~13px. 이 값을 키우면 커집니다 */
    width: 400px; /* 또는 적절한 고정값 예: 300px */
    min-width: 400px;
    max-width: 100%;
}

/* 헤더 영역 여백 */
.ui-datepicker .ui-datepicker-title {
    font-size: 20px; /* 예, 2025년 7월 폰트 크기*/
    margin: 0.5em 0;
}

/* 날짜 셀 크기 */
.ui-datepicker td a {
    display: inline-block;
}

/* 요일 및 날짜 셀 크기 */
.ui-datepicker table {
    width: 100%;
    table-layout: fixed;
}

.ui-datepicker th, .ui-datepicker td {
    text-align: center;
    font-size: 21px;
}

.ui-datepicker td a {
    display: inline-block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* 달력을 화면 중앙에 고정 */
#ui-datepicker-div {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 10px;
    padding: 1em;
}
