.trinex-confirm-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100000; /* Toast'tan bile üstte olsun */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.trinex-confirm-box {
    background: #fff;
    width: 400px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    transform: scale(0.95);
    animation: scaleIn 0.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.confirm-header {
    padding: 20px 24px 0;
    text-align: center;
}

.confirm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

/* Renk Temaları */
.confirm-type-danger .confirm-icon {
    background: #fee2e2;
    color: #ef4444;
}

.confirm-type-warning .confirm-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.confirm-type-info .confirm-icon {
    background: #e0f2fe;
    color: #0ea5e9;
}

.confirm-type-success .confirm-icon {
    background: #dcfce7;
    color: #10b981;
}

.confirm-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.confirm-body {
    padding: 0 24px 24px;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.confirm-footer {
    background: #f9fafb;
    padding: 16px 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    border-top: 1px solid #e5e7eb;
}
