/* ========== 알림판 라이트모드 CSS ========== */

/* 라이트모드 색상 변수 */
:root {
    --light-bg: #ffffff;
    --light-surface: #f8fafc;
    --light-card: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --gradient-light: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-warm: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --border-light: #e2e8f0;
}

/* 전역 라이트모드 적용 */
body {
    background: var(--light-bg) !important;
    color: var(--text-primary) !important;
}

/* button 기본 스타일 리셋 */
button.modal-close {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

button.modal-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ========== 헤더 이미지 스타일 ========== */
#intro-header .spotlight {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    background: #ffffff !important;
}

#intro-header .spotlight .image {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
}

#intro-header .spotlight .content {
    display: none !important;
}

#intro-header .spotlight .image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    display: block !important;
    transition: transform 0.6s ease, filter 0.6s ease !important;
    filter: brightness(1) contrast(1.1) !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 헤더 텍스트 오버레이 - 검은색 */
.header-text-overlay {
    position: absolute !important;
    left: 8% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    max-width: 600px !important;
    padding: 2rem !important;
    pointer-events: none !important;
}

.header-text-overlay h2 {
    color: #000000 !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8) !important;
}

.header-text-overlay p {
    color: #000000 !important;
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8) !important;
}

/* 헤더 애니메이션 - 데스크톱만 */
@media screen and (min-width: 981px) {
    #intro-header .spotlight:not(.animate) .image {
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }

    #intro-header .spotlight:not(.animate) .header-text-overlay {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(-30px) !important;
    }

    #intro-header.animate .spotlight .image {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    #intro-header.animate .spotlight .header-text-overlay {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) !important;
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s !important;
    }

    #intro-header .spotlight:hover .image img {
        transform: none !important;
        filter: brightness(1) contrast(1.1) !important;
    }
}

/* 모바일/태블릿 - 애니메이션 없이 항상 표시 */
@media screen and (max-width: 980px) {
    #intro-header .spotlight .image,
    #intro-header .spotlight:not(.animate) .image,
    #intro-header.animate .spotlight .image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
    }
    
    #intro-header .spotlight .image img {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

#intro-header {
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ========== 헤더 라이트테마 ========== */
#header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--border-light) !important;
    backdrop-filter: blur(20px);
}

#header h1 a {
    color: var(--text-primary) !important;
}

#header nav > ul > li > a {
    color: var(--text-secondary) !important;
}

#header nav > ul > li > a:hover {
    color: var(--accent-purple) !important;
}

/* ========== 메뉴 라이트테마 ========== */
#menu {
    background: var(--light-bg) !important;
    color: var(--text-primary) !important;
    border-left: 1px solid var(--border-light) !important;
}

#menu ul > li {
    border-top-color: var(--border-light) !important;
}

#menu ul > li > a {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease !important;
}

#menu ul > li > a:hover {
    color: var(--accent-purple) !important;
}

/* ========== 네비게이션 스타일 ========== */
.notice-nav .actions.fit {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.notice-nav .button {
    background: var(--light-bg) !important;
    border: 2px solid var(--border-light) !important;
    color: var(--text-secondary) !important;
    transition: all 0.4s ease !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px var(--shadow-light) !important;
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.notice-nav .button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    transition: left 0.4s ease;
    z-index: -1;
}

.notice-nav .button:hover,
.notice-nav .button.active {
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.3) !important;
}

.notice-nav .button:hover:before,
.notice-nav .button.active:before {
    left: 0;
}

.notice-nav .button.bible-external {
    background: var(--gradient-warm) !important;
    color: white !important;
    border: none !important;
}

.notice-nav .button.bible-external:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4) !important;
}

/* ========== 게시판 스타일 ========== */
.notice-board {
    background: var(--light-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.notice-board h3 {
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: var(--gradient-light);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.board-search {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
}

.post-actions {
    display: flex;
    align-items: center;
}

.board-search input {
    flex-grow: 1;
    background: var(--light-bg) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-primary) !important;
    padding: 0.8em !important;
    border-radius: 8px !important;
    height: auto !important;
}

.board-search input:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

.board-search .button.search-btn {
    background: var(--accent-blue) !important;
    color: white !important;
    border: none !important;
    padding: 0.8em 1.5em !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    height: 2.75em !important;
}

.board-search .button.search-btn:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
}

/* ========== 게시판 아이템 ========== */
.notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.notice-item:hover {
    background: rgba(168, 85, 247, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin: 0 -1rem;
    transform: translateX(10px);
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-title {
    color: var(--text-primary);
    font-weight: 500;
    flex-grow: 1;
}

.notice-date {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-left: 1rem;
}

.notice-badge {
    background: var(--gradient-light);
    color: white;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.notice-badge.important {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== 상담 관련 스타일 ========== */
.counsel-form {
    background: var(--light-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.counsel-form h3 {
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem;
    background: var(--gradient-light);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counsel-form label {
    color: var(--text-primary) !important;
}

.counsel-form input,
.counsel-form textarea,
.counsel-form select {
    background: var(--light-bg) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
}

.counsel-form input:focus,
.counsel-form textarea:focus,
.counsel-form select:focus {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2) !important;
}

.counsel-form textarea {
    min-height: 120px;
    resize: vertical;
}

.counsel-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.counsel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.counsel-status {
    padding: 0.2em 0.6em;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.counsel-status.completed {
    background: rgba(46, 204, 113, 0.2);
    color: #16a34a;
}

.counsel-status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #d97706;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========== 글쓰기 버튼 ========== */
.post-actions {
    margin-top: 1.5rem;
    text-align: right;
}

.post-actions .button.write-btn {
    background: var(--gradient-light) !important;
    color: white !important;
    border: none !important;
    padding: 0.8em 2em !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

.post-actions .button.write-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3) !important;
}

/* ========== 래퍼 스타일 라이트테마 ========== */
.wrapper.style1 {
    background: var(--light-bg) !important;
    color: var(--text-primary) !important;
}

.wrapper.style2 {
    background: var(--light-surface) !important;
    color: var(--text-primary) !important;
}

.wrapper.style3 {
    background: var(--light-bg) !important;
    color: var(--text-primary) !important;
}

.wrapper h2, 
.wrapper h3, 
.wrapper h4 {
    color: var(--text-primary) !important;
}

.wrapper p {
    color: var(--text-secondary) !important;
}

.wrapper.style1 header.major h2,
.wrapper.style3 header.major h2 {
    border-color: var(--border-light) !important;
    background: var(--gradient-light);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper.style1 header.major p,
.wrapper.style3 header.major p {
    color: var(--text-secondary) !important;
}

/* ========== 섹션 탭 전환 효과 ========== */
.section-tab {
    display: none;
}

.section-tab.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* ========== 폼 스타일 ========== */
#studentPostForm input,
#studentPostForm textarea,
#studentPostForm select {
    background: var(--light-bg) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
}

#studentPostForm input:focus,
#studentPostForm textarea:focus,
#studentPostForm select:focus {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2) !important;
}

#studentPostForm .button.primary {
    background: var(--gradient-light) !important;
    color: white !important;
    border: none !important;
}

#studentPostForm .button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3) !important;
}

/* ========== 모달 스타일 ========== */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex !important;
}

.modal-content {
    background: var(--light-bg);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
}

.modal-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: var(--light-card) !important;
    border: none !important;
    font-size: 0 !important;
    color: var(--text-secondary) !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    transition: background 0.3s ease, color 0.3s ease !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    font-family: Arial, Helvetica, sans-serif !important;
    text-align: center !important;
}

.modal-close:hover {
    background: var(--accent-purple) !important;
    color: white !important;
    transform: none !important;
}

/* 닫기 아이콘 내부 스타일 - 완벽한 중앙 정렬 */
.modal-close .close-icon,
.modal-close span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 0.5px !important;
    top: 0.5px !important;
    width: 100% !important;
    height: 100% !important;
    font-weight: 300 !important;
}

/* 대안: CSS로 만든 완벽한 X (문자 대신 사용 가능) */
.modal-close.css-x .close-icon,
.modal-close.css-x span {
    font-size: 0 !important;
    position: relative !important;
    width: 20px !important;
    height: 20px !important;
}

.modal-close.css-x .close-icon::before,
.modal-close.css-x .close-icon::after,
.modal-close.css-x span::before,
.modal-close.css-x span::after {
    content: '' !important;
    position: absolute !important;
    width: 2px !important;
    height: 20px !important;
    background: currentColor !important;
    top: 50% !important;
    left: 50% !important;
}

.modal-close.css-x .close-icon::before,
.modal-close.css-x span::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.modal-close.css-x .close-icon::after,
.modal-close.css-x span::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* ========== 페이지네이션 ========== */
.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.pagination li a {
    background: var(--light-bg) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-secondary) !important;
}

.pagination li a:hover,
.pagination li a.active {
    background: var(--gradient-light) !important;
    color: white !important;
    border-color: transparent !important;
}

/* ========== 검색 결과 하이라이트 ========== */
mark {
    background: var(--accent-purple);
    color: white;
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

/* ========== 반응형 디자인 ========== */
@media screen and (max-width: 980px) {
    /* 헤더 텍스트 반응형 */
    #intro-header .spotlight {
        min-height: auto !important;
    }
    
    #intro-header .spotlight .image {
        height: auto !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    #intro-header .spotlight .image img {
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .header-text-overlay {
        left: 5% !important;
        max-width: 500px !important;
        padding: 1.5rem !important;
    }
    
    .header-text-overlay h2 {
        font-size: 2.8rem !important;
    }
    
    .header-text-overlay p {
        font-size: 1.1rem !important;
    }
    
    .notice-nav .actions.fit {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notice-nav .actions.fit li {
        width: 100%;
    }
    
    .board-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .board-search {
        width: 100%;
    }
}
@media screen and (max-width: 736px) {
    /* 헤더 모바일 반응형 */
    #intro-header {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #intro-header .spotlight {
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        display: block !important;
    }
    
    #intro-header .spotlight .image {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
        background: #ffffff !important;
        display: block !important;
    }
    
    #intro-header .spotlight .image img {
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 0 !important;
        display: block !important;
    }
    
    .header-text-overlay {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 90% !important;
        padding: 1.5rem 1rem !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 12px !important;
        backdrop-filter: blur(10px) !important;
        z-index: 10 !important;
    }
    
    .header-text-overlay h2 {
        font-size: 2rem !important;
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .header-text-overlay p {
        font-size: 1rem !important;
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    #intro-header .spotlight:not(.animate) .header-text-overlay {
        opacity: 0 !important;
        transform: translate(-50%, -50%) scale(0.95) !important;
    }
    
    #intro-header.animate .spotlight .header-text-overlay {
        opacity: 1 !important;
        transform: translate(-50%, -50%) !important;
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s !important;
    }
    
    #intro-header .spotlight:hover .image img {
        transform: none !important;
    }
    
    .notice-board {
        padding: 1.5rem;
    }
    
    .counsel-form {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}
@media screen and (max-width: 480px) {
    /* 헤더 작은 모바일 */
    #intro-header .spotlight {
        min-height: auto !important;
        display: block !important;
    }
    
    #intro-header .spotlight .image {
        height: auto !important;
        display: block !important;
    }
    
    #intro-header .spotlight .image img {
        height: auto !important;
        width: 100% !important;
        display: block !important;
    }
    
    .header-text-overlay {
        padding: 1.2rem 0.8rem !important;
        max-width: 85% !important;
    }
    
    .header-text-overlay h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        color: #000000 !important;
    }
    
    .header-text-overlay p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        color: #000000 !important;
    }
    
    .notice-nav .button {
        padding: 0.8em 1.2em !important;
        font-size: 0.9em !important;
    }
    
    .notice-board {
        padding: 1rem;
    }
    
    .counsel-form {
        padding: 1rem;
    }
    
    .notice-item {
        padding: 0.8rem 0;
        font-size: 0.9em;
    }
    
    .notice-item:hover {
        padding: 0.8rem;
    }
}

/* ========== 애니메이션 효과 ========== */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.clicked {
    animation: clickEffect 0.3s ease;
}

@keyframes clickEffect {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.searching {
    animation: searchPulse 1s ease;
}

@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* ========== 접근성 개선 ========== */
@media (prefers-reduced-motion: reduce) {
    #intro-header .spotlight .image,
    #intro-header .spotlight .image img,
    #intro-header .spotlight .header-text-overlay,
    .section-tab,
    .fade-in,
    .notice-item,
    .notice-badge {
        animation: none !important;
        transition: none !important;
    }
    
    #intro-header .spotlight .image {
        opacity: 1 !important;
    }
    
    #intro-header .spotlight .header-text-overlay {
        opacity: 1 !important;
    }
    
    @media screen and (min-width: 981px) {
        #intro-header .spotlight .header-text-overlay {
            transform: translateY(-50%) !important;
        }
    }
}

/* ========== 푸터 라이트테마 ========== */
#footer {
    background: var(--light-surface) !important;
    border-top: 1px solid var(--border-light) !important;
}

#footer .icons li a {
    color: var(--text-secondary) !important;
    border-color: var(--border-light) !important;
}

#footer .icons li a:hover {
    color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
}

#footer .copyright li {
    color: var(--text-muted) !important;
    border-left-color: var(--border-light) !important;
}

#footer .copyright li a {
    color: var(--text-secondary) !important;
}

#footer .copyright li a:hover {
    color: var(--accent-purple) !important;
}

/* ========== 학사일정 캘린더 네비게이션 버튼 스타일 ========== */
.calendar-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.calendar-controls button {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    background: white;
    color: #000000 !important;
    font-weight: 600 !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px;
}

.calendar-controls button i {
    color: #000000 !important;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-controls button:hover {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.calendar-controls button:hover i {
    color: white !important;
}

#todayBtn {
    color: #000000 !important;
    font-weight: 600 !important;
}

#prevMonth,
#nextMonth {
    color: #000000 !important;
}

#prevMonth i,
#nextMonth i {
    color: #000000 !important;
}