.close-btn {
    /* position: absolute;
    top: 10px;
    left: 10px; */
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    /* color: #333;
    z-index: 1; */
    font-weight: bold;
    color: red;
}

#promo-ad {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in-out;
    color: black !important;
}

.promo-banner {
    width: auto;
    max-width: 100%;
    max-height: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* Override styles for screens 768px and smaller */
@media (max-width: 768px) {
    #promo-ad {
        bottom: 0;
        left: unset;
        transform: unset;
        width: 100%;
        max-height: 50vh;
        max-width: unset;
    }

    .promo-banner {
        max-height: 250px;
    }
}

.promo-ad.hidden {
    display: none !important;
}

#promo-user-status.hidden{
    display: none !important;
}

.promo-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.promo-user span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.promo-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-text {
    width: 100%;
    text-align: center;
    font-size: small;
}

.promo-text h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: black !important;
}

.promo-text p {
    margin: 0;
    font-size: 0.9rem;
}
