﻿/* 날짜 입력 필드 스타일 개선 */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

    input[type="date"]::-webkit-calendar-picker-indicator {
        cursor: pointer;
        font-size: 1.1em;
    }

/* 모바일에서 더 나은 터치 경험 */
@media (max-width: 768px) {
    input[type="date"] {
        font-size: 16px; /* iOS에서 자동 줌 방지 */
    }
}
