.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 0.5s ease-out;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
}

.popup-actions {
    display: flex;
    gap: 10px;
}

.popup-actions button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-allow { background-color: #2ecc71; color: white; }
.btn-cancel { background-color: #e74c3c; color: white; }

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Adjust navbar padding if banner is visible */
body.has-banner { padding-top: 60px; }