/* Simple loading spinner for the news page */
.news-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 1.5rem;
    color: #666;
}
.news-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ticker-title {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 0.25rem;
}

