/* home_calendar.css */

/* ───────────────────────────────
캘린더 전체 박스
─────────────────────────────── */
.calendar-box {
    background-color: #f2f2ff;
    border-left: 5px solid #3333aa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ───────────────────────────────
캘린더 제목
─────────────────────────────── */
.calendar-box h3 {
    margin-top: 0;
    color: #3333aa;
}

/* ───────────────────────────────
캘린더 placeholder 영역
─────────────────────────────── */
.calendar-placeholder {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e8e8ff;
    border-radius: 6px;
    color: #666;
    font-style: italic;
}

/* ───────────────────────────────
캘린더 헤더 (이전/다음 버튼 + 날짜)
─────────────────────────────── */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.calendar-header button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 4px 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.calendar-header span {
    font-weight: bold;
    font-size: 16px;
}

/* ───────────────────────────────
캘린더 테이블
─────────────────────────────── */
.calendar-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
}

.calendar-table th,
.calendar-table td {
    border: 1px solid #ccc;
    padding: 8px;
    box-sizing: border-box;
}

.calendar-table td[data-date] {
    cursor: pointer;
}

.calendar-table caption {
    font-weight: bold;
    margin-bottom: 10px;
}

/* 오늘 날짜: 빨간 배경 */
.calendar-table td.today {
    background-color: #d32f2f !important;
    color: white;
    font-weight: bold;
}

/* 선택된 날짜 */
.calendar-table td[data-date]:hover {
    background-color: #f5f5f5;
}

.calendar-table td.selected {
    background-color: #e0e0e0;
    outline: 2px solid #888;
    outline-offset: -2px;
}

/* ───────────────────────────────
행사 표시용 빨간 점
─────────────────────────────── */
.calendar-table .event-dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin: 1px auto 0;
    background-color: #d32f2f;
    border-radius: 50%;
}

/* 정기훈련 표시용 검은 점 */
.calendar-table .training-dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin: 1px auto 0;
    background-color: #000000;
    border-radius: 50%;
}

/* ───────────────────────────────
클릭 후 하단 이벤트 목록
─────────────────────────────── */
.event-list {
    margin-top: 10px;
    background-color: #fff0f0;
    padding: 10px 15px;
    border-radius: 6px;
    color: #333;
}

.event-list h4 {
    margin: 5px 0;
    font-size: 15px;
}

.event-list ul {
    margin: 5px 0 0;
    padding-left: 20px;
}

.event-list li {
    font-size: 15px;
    margin-bottom: 4px;
}
