/* =========================
   SOLOBEA POPUP COMPONENT
   ========================= */

.solobea-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    z-index: 9999;
    padding: 20px;
}

.solobea-popup-box {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.solobea-popup-text {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 26px;
}

.solobea-popup-highlight {
    font-weight: 700;
    color: rgb(6, 156, 212);
}

/* ---------------- BUTTONS ---------------- */

.solobea-popup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.solobea-popup-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solobea-popup-btn:hover {
    transform: translateY(-2px);
}

/* Cancel button */
.solobea-popup-cancel {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
}

.solobea-popup-cancel:hover {
    background: #dc2626;
}

/* OK button */
.solobea-popup-ok {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.35);
}

.solobea-popup-ok:hover {
    background: #15803d;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 480px) {
    .solobea-popup-actions {
        flex-direction: column;
    }

    .solobea-popup-btn {
        width: 100%;
        text-align: center;
    }
}
