/* Frontend styles for Popups plugin */

/* Custom SweetAlert2 popup styling */
.popups-swal-popup {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

.popups-swal-title {
    color: #b1553f !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    padding: 20px 0 10px 0 !important;
}

.popups-swal-content {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    text-align: center !important;
}

.popups-swal-content p {
    margin-bottom: 12px;
    text-align: center;
}

/* Make sure buttons display in the same line */
.popups-swal-actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

/* Remove any link styling from buttons */
.swal2-actions a.swal2-cancel {
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .popups-swal-actions {
        flex-direction: column !important;
    }
}
