/* ============================================
   CONFIRMATION MODAL - Account Confirmed / Expired
   ============================================ */

/* --- Overlay --- */
.confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.confirm-overlay.active {
    display: flex;
}

/* --- Modal Box --- */
.confirm-modal {
    background: var(--color-light);
    width: 100%;
    max-width: 420px;
    border-radius: 4px;
    position: relative;
    animation: confirmModalIn 0.3s ease;
}

@keyframes confirmModalIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Close Button --- */
.confirm-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--color-gray);
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    transition: color var(--transition);
}

.confirm-modal-close:hover {
    color: var(--color-dark);
}

/* --- Modal Body --- */
.confirm-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.confirm-modal-body h2 {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.confirm-modal-body p {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Checkmark / Warning Icon --- */
.confirm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1abc9c;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* --- OK Button --- */
.confirm-btn {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 12px 40px;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.confirm-btn:hover {
    background: #333;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .confirm-modal {
        max-width: 100%;
    }

    .confirm-modal-body {
        padding: 30px 20px;
    }
}
