﻿/*====== announcement area ===== */
.announcement-area {
    padding: 15px 0;
}

.announcement-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .announcement-box marquee {
        color: #0073BB;
        font-size: 18px;
        flex-grow: 1;
    }

.announcement-section-paragraph-text {
    color: #0073BB;
    margin: 0;
}

/*====== pause/play button ===== */
.marquee-pauseplay {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .marquee-pauseplay .play-pause-btn {
        background-color: rgba(230, 230, 230, 1) !important;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
    }

        .marquee-pauseplay .play-pause-btn:hover {
            background-color: rgba(210, 210, 210, 1) !important;
        }

        .marquee-pauseplay .play-pause-btn svg {
            fill: white;
            width: 26px;
            height: 26px;
        }

#pauseIcon,
#playIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
