
.news-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.news-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.news-slide {
    min-width: 100%;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slide-indicator.active {
    background: #333;
}
/* News Ticker Styles */
.news-ticker-container {
    width: 100%;
    background-color: #030B15;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.news-ticker {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: ticker-scroll 30s linear infinite;
}

.news-ticker:hover {
    animation-play-state: paused;
}

.news-item {
    display: inline-block;
    margin-right: 40px;
    vertical-align: middle;
}

.news-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.news-icon.important { color: #ff4444; }
.news-icon.update { color: #ffbb33; }
.news-icon.information { color: #33b5e5; }
.news-icon.alert { color: #ff8800; }

.news-separator {
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #444;
    margin: 0 20px;
    vertical-align: middle;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Add to your stylesheet */
tr.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.ajax-alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}