body {
    font-family: 'Nanum Gothic', sans-serif; /* 둥글둥글한 폰트 권장 */
    background-color: #fdfaf6; /* 따뜻한 아이보리 */
    font-size: 1.2rem; /* 큰 폰트 [cite: 9] */
    margin: 0; padding: 10px;
    color: #555;
}

.container { max-width: 500px; margin: auto; background: white; padding: 20px; border-radius: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

h2 { color: #88b04b; text-align: center; }

input, select, textarea {
    width: 100%; padding: 12px; margin: 8px 0;
    border: 2px solid #e0e0e0; border-radius: 10px;
    font-size: 1.1rem; box-sizing: border-box;
}

button {
    width: 100%; padding: 15px; background-color: #a3d2ca; /* 파스텔 민트 */
    border: none; border-radius: 10px; font-size: 1.2rem; font-weight: bold; cursor: pointer;
}

.calendar-highlight { background-color: #ffcfdf !important; border-radius: 50%; } /* 날짜 강조 */

.record-card {
    border-left: 5px solid #a3d2ca; padding: 15px; margin-bottom: 15px;
    background: #f9f9f9; border-radius: 0 10px 10px 0;
}

/* FullCalendar 상단 툴바(today, <, > 버튼) 정렬 */
.fc-toolbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

/* 버튼 그룹이 세로로 깨지는 것 방지 */
.fc-button-group {
    display: flex !important;
    gap: 5px;
}

/* 버튼 디자인: 파스텔 톤 및 크기 확대 */
.fc-button {
    background-color: #f0f0f0 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    padding: 8px 12px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    text-transform: capitalize !important; /* Today 첫글자 대문자 */
}

/* '오늘' 버튼 가로 사이즈 및 디자인 수정 */
.fc-today-button {
    min-width: 60px !important; /* 가로 최소 길이를 50px로 확장 */
    padding: 10px 10px !important; /* 안쪽 여백을 늘려 터치 영역 확보 */
    font-weight: bold !important;
    font-size: 1.1rem !important;
    background-color: #ffcfdf !important; /* 파스텔 핑크 */
    color: #555 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important; /* 약간의 입체감 */
    transition: all 0.2s ease;
}

/* 버튼을 눌렀을 때 효과 (피드백) */
.fc-today-button:active {
    transform: scale(0.95);
    background-color: #f8bbd0 !important;
}

/* 상단 툴바 버튼 사이 간격 넓히기 */
.fc-toolbar-chunk:last-child {
    display: flex !important;
    gap: 12px !important; /* 버튼 사이 간격을 12px로 벌림 */
}

/* 화살표 버튼 아이콘 위치 교정 */
.fc-icon {
    vertical-align: middle !important;
}

/* 달력 제목 (2026년 4월) */
.fc-toolbar-title {
    font-size: 1.2rem !important;
    color: #88b04b !important;
    font-weight: bold;
}

/* 삭제 버튼 스타일 */
.delete-btn {
    display: inline-block;
    color: #e74c3c !important;
    border: 1.5px solid #e74c3c !important;
    background-color: transparent;
    padding: 8px 15px !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    cursor: pointer;
    text-decoration: none;
}

.delete-btn:hover {
    background-color: #fff5f5 !important;
}