/* Generated from events.html inline styles */
/* ── Events Page specific Styles ── */
        .page-header {
            padding: calc(var(--nav-height) + 60px) 0 40px;
            text-align: center;
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-header h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 900;
            margin-bottom: 16px;
        }

        .page-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Layout Grid */
        .events-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 32px;
            margin-bottom: 64px;
        }

        /* Glass container styles */
        .events-panel {
            background: var(--bg-glass);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 24px;
            height: fit-content;
        }

        /* Notice Board specific */
        .notice-board-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 16px;
        }

        .notice-board-header h2 {
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notice-board-header h2 i {
            color: var(--accent);
        }

        /* Notice Filters */
        .notice-filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 6px 14px;
            border: 1px solid var(--border-glass);
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.5);
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            font-family: 'Inter', sans-serif;
        }

        .filter-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .filter-btn.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        /* Notices list */
        .notices-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-height: 520px;
            overflow-y: auto;
            padding-right: 8px;
        }

        .notices-list::-webkit-scrollbar {
            width: 6px;
        }

        .notices-list::-webkit-scrollbar-track {
            background: rgba(15, 23, 42, 0.03);
            border-radius: 3px;
        }

        .notices-list::-webkit-scrollbar-thumb {
            background: rgba(15, 23, 42, 0.12);
            border-radius: 3px;
        }

        .notice-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-md);
            padding: 18px 20px 18px 24px;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .notice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: var(--text-muted);
        }

        .notice-card.urgent::before {
            background: var(--danger);
        }

        .notice-card.camp::before {
            background: var(--accent);
        }

        .notice-card.meeting::before {
            background: var(--info);
        }

        .notice-card.general::before {
            background: var(--success);
        }

        .notice-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: rgba(15, 23, 42, 0.15);
        }

        .notice-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            flex-wrap: wrap;
        }

        .notice-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: rgba(15, 23, 42, 0.06);
            padding: 4px 10px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .notice-date::before {
            content: '\f133';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--text-accent);
            font-size: 0.75rem;
        }

        .badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-urgent {
            background: rgba(220, 38, 38, 0.1);
            color: var(--danger);
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .badge-camp {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent);
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .badge-meeting {
            background: rgba(37, 99, 235, 0.1);
            color: var(--info);
            border: 1px solid rgba(37, 99, 235, 0.2);
        }

        .badge-general {
            background: rgba(5, 150, 105, 0.1);
            color: var(--success);
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .notice-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.45;
            color: var(--text-primary);
        }

        .notice-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Calendar Card */
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 16px;
        }

        .calendar-title {
            font-size: 1.3rem;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            color: var(--text-primary);
        }

        .calendar-nav {
            display: flex;
            gap: 8px;
        }

        .cal-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: rgba(15, 23, 42, 0.05);
            border: 1px solid var(--border-glass);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .cal-nav-btn:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        /* Grid */
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            margin-top: 8px;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
            text-align: center;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--text-primary);
            position: relative;
            border: 1px solid transparent;
        }

        .calendar-day:hover {
            background: rgba(15, 23, 42, 0.06);
            border-color: var(--border-glass);
        }

        .calendar-day.empty {
            cursor: default;
            color: transparent;
            pointer-events: none;
        }

        .calendar-day.prev-next-month {
            color: var(--text-muted);
            opacity: 0.35;
        }

        .calendar-day.today {
            background: var(--primary-light);
            color: #ffffff;
            font-weight: 700;
        }

        .calendar-day.has-event {
            background: rgba(245, 158, 11, 0.08);
            border-color: rgba(245, 158, 11, 0.25);
            color: var(--accent);
            font-weight: 700;
        }

        .calendar-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 6px;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
        }

        .calendar-day.has-event.selected {
            background: var(--accent);
            color: #ffffff !important;
            border-color: var(--accent);
        }

        .calendar-day.has-event.selected::after {
            background: #ffffff;
        }

        /* Detail Panel */
        .event-details-card {
            background: rgba(255, 255, 255, 0.45);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition-normal);
        }

        .event-details-card.has-data {
            background: rgba(255, 255, 255, 0.75);
            border-color: rgba(245, 158, 11, 0.2);
            box-shadow: var(--shadow-md);
        }

        .details-header {
            margin-bottom: 16px;
        }

        .details-header .badge {
            margin-bottom: 8px;
        }

        .details-header h3 {
            font-size: 1.25rem;
            line-height: 1.3;
        }

        .details-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 16px 0;
        }

        .details-meta-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        .details-meta-item i {
            color: var(--text-muted);
            width: 16px;
            text-align: center;
            margin-top: 3px;
        }

        .details-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .details-empty-state {
            text-align: center;
            padding: 32px 16px;
            color: var(--text-muted);
        }

        .details-empty-state i {
            font-size: 2.2rem;
            margin-bottom: 12px;
            opacity: 0.7;
        }

        .details-empty-state p {
            font-size: 0.9rem;
        }

        /* Modals */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: all var(--transition-normal);
        }

        .modal.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background: #ffffff;
            border-radius: var(--radius-xl);
            max-width: 500px;
            width: calc(100% - 32px);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            transform: scale(0.9);
            transition: all var(--transition-normal);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 24px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .modal-header h3 {
            font-size: 1.3rem;
            line-height: 1.3;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.25rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color var(--transition-fast);
            padding: 4px;
        }

        .modal-close:hover {
            color: var(--danger);
        }

        .modal-body {
            padding: 24px;
        }

        .modal-footer {
            padding: 16px 24px;
            background: rgba(15, 23, 42, 0.02);
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        /* No search results */
        .no-notices {
            text-align: center;
            padding: 40px 16px;
            color: var(--text-muted);
        }

        .no-notices i {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        @media (max-width: 1024px) {
            .events-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .events-panel {
                padding: 20px;
            }

            .notice-board-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }
