.notice-board {
    position: relative;
    overflow: hidden;
    background: #111827;
    border-bottom: 2px solid #1e3a8a;
    /* Updated primary color */
    padding: 10px 0;
    font-family: "Noto Sans Bengali", Arial, sans-serif;
    font-size: 15px;
    line-height: 4px;
    color: #ffffff;
    /* Updated primary color */
}

.notice-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
    padding-left: 100%;
}

.notice-board a {
    color: #ffffff;
    /* Updated primary color */
    font-weight: 500;
    text-decoration: none;
    margin: 0 12px;
}

.make-red {
    color: #ffffff;
    font-weight: bold;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}