﻿body {

}
/* State dropdown scrollable */
.state-dropdown {
    max-height: 250px;
    overflow-y: auto;
}
/* Navbar links hover effect */
.navbar-nav .nav-link:hover {
    background-color: darkblue;
    color: #fff !important;
    border-radius: 5px;
}
/* Dropdown items hover effect */
.dropdown-menu .dropdown-item:hover {
    background-color: darkblue;
    color: #fff !important;
}

.top-stories-bar {
        background: #f8f9fa;
        border-bottom: 2px solid #dc3545;
        padding: 6px 0;
    }
    .top-stories-label {
        background: #9e9b9b;
        border-right: 2px solid #dc3545;
        padding: 4px 12px 4px 8px;
        font-weight: bold;
        color: #333;
        position: relative;
        margin-right: 10px;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }
    .news-marquee {
        font-size: 15px;
        font-weight: 500;
        color: #000;
    }
    .news-marquee a {
        color: #000;
        text-decoration: none;
        margin: 0 10px;
    }
    .news-marquee a:hover {
        text-decoration: underline;
        color: #dc3545;
    }

.blink-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Footer hover effect */
footer a:hover {
    color: red !important;
    text-decoration: underline;
}


