:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.accessibility-tools {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.font-size-buttons button {
    margin-right: 5px;
}

.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast .card {
    background-color: #222 !important;
    color: #fff !important;
}

.high-contrast .footer {
    background-color: #222 !important;
    color: #fff !important;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 30px;
}

.news-item {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.sidebar-menu .list-group-item {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.sidebar-menu .list-group-item:first-child {
    border-top: none;
}

.sidebar-menu .list-group-item a {
    color: #212529;
}

.sidebar-menu .list-group-item a:hover {
    color: var(--primary-color);
}

.sidebar-menu .list-unstyled a {
    color: #6c757d;
    font-size: 0.9rem;
}

.sidebar-menu .list-unstyled a:hover {
    color: var(--primary-color);
}

/* Ticker Styling */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #dc3545;
    padding: 10px 0;
    position: relative;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 30s;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: white;
    font-weight: bold;
}

/* Header styling */
.header-image {
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.header-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* New announcement styling */
.announcement {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

/* Report button styling */
.report-button .btn {
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.report-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 767.98px) {
    .sidebar {
        margin-bottom: 2rem;
    }
    
    .header-image {
        height: 150px;
    }
}