/* Confirmation modal styles */
.confirm-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
}

.confirm-box {
    min-width: 380px;
    max-width: 520px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: confirm-fade-in .25s ease-out;
    font-family: "Open Sans", sans-serif;
}

.confirm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #fbfbfb;
    color: #1a1818;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid #cbc8c8;
}

/* Trash/delete icon before the title using Font Awesome */
.confirm-header::before {
    content: "\f1f8"; /* Unicode for trash icon in Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Solid style */
    font-size: 18px;
    color: #e56661;
}

.confirm-body {
    padding: 20px 18px;
    color: #111827;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 18px 18px;
    background: #f9fafb;
}

.confirm-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.confirm-btn.ok {
    background: #d92206;
    color: #fff;
}

.confirm-btn.cancel {
    background: #e5e7eb;
    color: #111827;
}

@keyframes confirm-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
