#banner-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.banner-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #000;
    animation: popup-fade 2s ease-in-out;
}

input {
    font-size: 18px;
    padding: 10px;
    margin: 10px;
    width: 250px;
    border-radius: 5px;
}

button {
    font-size: 16px;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

.toggle-button {
    background-color: #f44336;
}

@keyframes popup-fade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}