.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.close-btn {
    cursor: pointer;
    color: #000;
    float: right;    
}

.announcement-widget {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 250px;
            font-size: 1rem;
            background: linear-gradient(#ffde59, #fff);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;           
            color: #000;           
            text-align: center;
            display: block;
}