/* ── advertiserModal.css ── */

#advertiserModalBackdrop .pop-up-modal {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#advertiserModalBackdrop .pop-up-modal-header {
    padding: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
}

#advertiserModalBackdrop .pop-up-modal-footer {
    padding: 16px;
    margin-top: 0;
    border-top: 1px solid #1e1e20;
    flex-shrink: 0;
}

.advertiser-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    text-align: center;
}

.advertiser-modal-image {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.advertiser-modal-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.advertiser-modal-description {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.adv-modal-timer {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a84c;
    min-width: 18px;
    text-align: right;
}

/* Botões desabilitados durante a contagem regressiva */
.pop-up-modal-footer button:disabled,
.pop-up-modal-header button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
