.climate-calendar-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-family: Arial, "Noto Sans KR", sans-serif;
    box-sizing: border-box;
}

.climate-calendar-container *,
.climate-calendar-container *::before,
.climate-calendar-container *::after {
    box-sizing: border-box;
}

.climate-calendar-title {
    margin: 0 0 20px;
    text-align: center;
}

.climate-calendar-legend {
    margin-bottom: 20px;
    text-align: center;
}

.climate-calendar-legend span {
    display: inline-flex;
    align-items: center;
    margin: 0 12px;
    font-weight: 700;
}

.legend-dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 7px;
    border-radius: 50%;
}

.legend-hot {
    background: #e74c3c;
}

.legend-cold {
    background: #3498db;
}

#climate-calendar {
    margin-bottom: 30px;
}

.climate-detail-box {
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.climate-detail-box table {
    width: 100%;
    margin-top: 12px;
    border-collapse: collapse;
}

.climate-detail-box th,
.climate-detail-box td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.climate-detail-box th {
    background: #eef3f8;
}

.climate-empty-message {
    padding: 20px;
    color: #777;
    text-align: center;
}

.hot-value {
    background: #fde2e2;
    color: #b42318;
    font-weight: 700;
}

.cold-value {
    background: #e1efff;
    color: #175cd3;
    font-weight: 700;
}

.climate-calendar-container .fc-event {
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.climate-calendar-container .fc-event:hover {
    opacity: 0.9;
}

.climate-calendar-error {
    padding: 20px;
    border: 1px solid #e4aaaa;
    background: #fff3f3;
    color: #b42318;
    text-align: center;
}

@media (max-width: 768px) {
    .climate-calendar-container {
        padding: 15px;
        border-radius: 0;
        box-shadow: none;
    }

    .climate-calendar-container .fc .fc-toolbar {
        align-items: flex-start;
        gap: 10px;
    }

    .climate-calendar-container .fc .fc-toolbar-title {
        font-size: 1.35rem;
    }

    .climate-detail-box {
        overflow-x: auto;
    }

    .climate-detail-box table {
        min-width: 480px;
    }
}
