/* Shared confirmation modal styles */
.compix-confirm-overlay {
    background: rgba(2, 6, 23, 0.78) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.compix-confirm-dialog {
    width: min(460px, 95vw);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
    color: #f8fafc;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    padding: 1.5rem;
}

.compix-confirm-dialog.compix-confirm-dialog-lg {
    width: min(560px, 96vw);
}

.compix-confirm-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.compix-confirm-title {
    margin: 0;
    color: #f8fafc;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.compix-confirm-text {
    margin-top: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.compix-confirm-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.compix-confirm-btn {
    height: 2.7rem;
    border-radius: 0.8rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.compix-confirm-btn-cancel {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
}

.compix-confirm-btn-cancel:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.12);
}

.compix-confirm-btn-danger {
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fff;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.32);
}

.compix-confirm-btn-danger:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.compix-confirm-btn-primary {
    border: 1px solid rgba(37, 99, 235, 0.45);
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.compix-confirm-btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
