/* 연두색 테마 포인트 */
.bg-theme { background-color: #84cc16; }
.text-theme { color: #65a30d; }

body {
    -webkit-font-smoothing: antialiased;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.nav-btn {
    color: #475569;
}

/* 스크롤바 최적화 */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #d9f99d;
    border-radius: 4px;
}

.timetable-period {
    font-size: 0.75rem;
    font-weight: 700;
    color: #65a30d;
    background: #ecfccb;
    padding: 0.3rem 0.65rem;
    border-radius: 0.5rem;
    min-width: 3.25rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.timetable-subject {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.timetable-row {
    border: 1px solid #f1f5f9;
}

.weekly-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.weekly-table {
    width: 100%;
    min-width: 520px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.8125rem;
}

.weekly-table th {
    font-weight: 700;
    color: #64748b;
    padding: 0.6rem 0.4rem;
    text-align: center;
    border-bottom: 2px solid #ecfccb;
}

.weekly-table th.today-col {
    color: #65a30d;
    background: #f7fee7;
    border-radius: 0.5rem 0.5rem 0 0;
}

.weekly-table td {
    padding: 0.55rem 0.4rem;
    text-align: center;
    color: #334155;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.weekly-table td.period-label {
    font-weight: 700;
    color: #65a30d;
    background: #fafafa;
    text-align: center;
    width: 3.5rem;
}

.weekly-table td.today-col {
    background: #f7fee7;
    font-weight: 600;
    color: #1e293b;
}

.weekly-table tr:last-child td {
    border-bottom: none;
}

.weekly-table .empty-cell {
    color: #cbd5e1;
}

.dash-time-carousel {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.dash-time-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.dash-time-slide {
    flex: 0 0 100%;
    min-height: 5.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0;
}

.dash-time-slide .slide-period {
    font-size: 0.7rem;
    font-weight: 700;
    color: #65a30d;
    background: #ecfccb;
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.dash-time-slide .slide-subject {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.dash-time-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.dash-time-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dash-time-dot.active {
    width: 1.1rem;
    background: #84cc16;
}

.dash-time-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.dash-time-counter {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
}