.announcement-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    background-color: #000;
    font-family: "Poppins", Arial, Sans-serif;
    font-size: 14px;
    color: #fff;
} 

.announcement-bar {
    display: flex;
    align-items: center;
}

.bar-arrow {
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    margin: 0 10px;
    transition: transform 0.2s;
}

.bar-arrow:hover {
    transform: scale(1.2);
}

.bar-item {
    min-width: 250px;
    text-align: center;
    white-space: nowrap;
}

.bar-item a { 
    color: #fff; 
    text-decoration: underline; 
}