.live-badge {
    background-color: red;
    color: white;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 0.8em;
    margin-right: 10px;
}

.sidebar {
    background-color: rgb(214, 205, 205);
}

.sidebar .nav-link {
    color: #ffffff !important;
}

.sidebar .nav-link:hover,
.sidebar .nav-link:focus {
    background-color:rgb(126, 144, 160, .08); /* Darker gray for hover effect */
    border-radius:20px;
    color: #ffa500 !important; /* Orange color for text on hover */
}

.sidebar .nav-link.active {
    background-color:rgb(126, 144, 160, .08); /* Orange color for active link */
    border-radius:20px;
    color: #ffffff !important; /* White text color for active link */
}
.sidebar .nav-link.active.nav-link:hover {
    background-color:rgb(126, 144, 160, .08); /* Orange color for active link */
    color: #ffffff !important; /* White text color for active link */
}

.sidebar .form-control {
    background-color: #6c757d; /* Dark gray for input background */
    border: none;
    color: #ffffff; /* White text */
}

.sidebar .form-control::placeholder {
    color: #dee2e6; /* Light gray placeholder */
}

.sidebar .form-control:focus {
    background-color: #495057; /* Darker gray when focused */
    color: #ffffff; /* White text */
    outline: none;
    box-shadow: none;
}

.sidebar-header a:hover,
.sidebar-header a:focus {
    text-decoration: none;
    color: #ffa500; /* Orange color for hover */
}
.marquee-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.static-span {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    /* Optional: This ensures the background covers any scrolling text behind it */
    padding-right: 20px;
    /* Adjust as needed to prevent overlap */
}

.scrolling-span {
    display: inline-block;
    animation: marquee 45s linear infinite;
    /* Adjust animation speed (15s) as needed */
    color: #000000;
    /* Red color for the scrolling text */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.news-scroll-container {
    overflow: hidden;
}

#js-news {
    display: inline-block;
    white-space: nowrap;
    animation: news-scroll 25s linear infinite;
}

@keyframes news-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Global Styles */
body {
    background-color: #f8f9fa;
    color: #212529;
}

.news-title {
    font-size: 1.5rem;
    color: #ff4500;
    margin-bottom: 15px;
}

.news-image img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.news-image img:hover {
    transform: scale(1.05);
}
.navbar-light .navbar-nav .nav-link {
    color: #555;
    font-weight: bolder; /* Font weight 600 */
    font-size: 20px;  /* Font size 20px */
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #007bff;
    transform: scale(1.1);
}
.navbar-nav {
    display: flex;
    justify-content: flex-end; /* Align items to the end */
    width: 100%;
}
.nav-item {
    text-align: center;
    margin-left: 20px; /* Add some space between nav items */
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    margin-right: 10px;
    box-shadow: 4px 5px 3px;
}
.nav-icon {
    margin-right: 8px; /* Space between icon and text */
    border-radius:50%;
}
.middle-space {
    flex-grow: 1; /* Grow to take up space in the middle */
}
.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 21px;
}
/* Initial state for the icon */
.rotate-upside-down {
    transition: transform 0.3s ease;
}
.rotate-upside-down.rotate {
    transform: rotate(180deg);
}