/* ===== CONFIRM MODAL ===== */
#confirm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
}

#confirm-modal.active { display: flex; }

.confirm-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    animation: toastIn 0.2s ease;
}

.confirm-box .confirm-icon {
    font-size: 2.5rem;
    text-align: center;
    display: block;
    margin-bottom: 0.75rem;
}

.confirm-box h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.confirm-box p {
    text-align: center;
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.confirm-btn-cancel {
    background-color: #95a5a6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.confirm-btn-cancel:hover { background-color: #7f8c8d; }

.confirm-btn-ok {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
}

.confirm-btn-ok:hover        { background-color: #c0392b; }
.confirm-btn-ok.green        { background-color: #27ae60; }
.confirm-btn-ok.green:hover  { background-color: #1e8449; }
