
        body {
            font-family: "Oxygen", sans-serif;
            background: #e6f9ff;
            background: linear-gradient(316deg, rgba(230, 249, 255, 1) 0%, rgba(251, 247, 235, 1) 80%, rgba(255, 252, 252, 1) 96%);
            min-height: 100vh;
        }
        
        .card-body h6 {
            color: #000;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Lora", serif;
            font-weight: 700;
        }
        
        /* Loading spinner */
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .loading-spinner.active {
            display: flex;
        }
        
        .btn-outline-primary {
            --bs-btn-color: #55298a;
            --bs-btn-border-color: #55298a;
            --bs-btn-hover-color: lavender;
            --bs-btn-hover-bg: #55298a;
            --bs-btn-hover-border-color: #55298a;
            --bs-btn-focus-shadow-rgb: 13, 110, 253;
            --bs-btn-active-color: lavender;
            --bs-btn-active-bg: #55298a;
            --bs-btn-active-border-color: #55298a;
            --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
            --bs-btn-disabled-color: #55298a;
            --bs-btn-disabled-bg: transparent;
            --bs-btn-disabled-border-color: #55298a;
            --bs-gradient: none;
            margin: 0.25em 0.1em;
        }
        
        .announcementCard {
            border: 1px solid #d5d6d8;
            background-color: white;
            border-radius: 1px;
            box-shadow: 0 4px 13px rgba(84, 41, 137, .1);
            margin-bottom: 1.5rem;
            transition: all .4s ease;
            min-width: 250px;
        }
        
        .announcementCard:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 13px rgba(84, 41, 137, .25);
            border: 1px solid #55298a;
        }
        
        .card-badge {
            display: inline-block;
            cursor: pointer;
            background-color: #f5ebf3;
            color: #55298a;
            border-radius: 2px;
            margin-right: 5px;
            margin-bottom: 5px;
            font-family: Oxygen, sans-serif;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1.35px;
            line-height: 1em;
            padding: 0.4em 0.5em;
        }
        
        .card-body h6 {
            line-height: 1em;
            margin-bottom: 0.15em;
        }
        
        p {
            font-family: Oxygen, sans-serif;
            font-size: .875rem;
            font-weight: 400;
            color: #000000;
            line-height: 1.35em;
            letter-spacing: .03em;
            margin-bottom: 1rem;
        }
        
        h1 {
            color: #55298a;
            margin-bottom: 0.5rem;
            line-height: 1em;
        }
        
        h3 {
            color: #55298a;
            margin-bottom: 0.5rem;
            line-height: 1em;
        }
        
        h5 {
            margin-bottom: 1rem;
            line-height: 1em;
        }

        .error-message {
            background-color: #f8d7da;
            border: 1px solid #f5c2c7;
            color: #842029;
            padding: 1rem;
            border-radius: 4px;
            margin: 1rem 0;
        }

        .no-announcements {
            text-align: center;
            padding: 3rem;
            color: #6c757d;
        }
    