/* ===== DELETE CONFIRMATION DIALOG - Prefix: fxdel- ===== */

.fxdel-dialog .mud-dialog {
    border-radius: 24px !important;
    overflow: hidden !important;
}

.fxdel-dialog .mud-dialog-content {
    padding: 0 !important;
}

.fxdel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 32px 28px;
    font-family: 'Inter', 'Poppins', sans-serif;
}

/* ===== Icon with rings ===== */
.fxdel-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.fxdel-icon-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.10);
    animation: fxdel-pulse-ring 2s ease-out infinite;
}

.fxdel-icon-ring-2 {
    width: 70px;
    height: 70px;
    background: rgba(239, 68, 68, 0.15);
    animation-delay: 0.4s;
}

@keyframes fxdel-pulse-ring {
    0%   { transform: scale(0.9); opacity: 1; }
    70%  { transform: scale(1.15); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.fxdel-icon {
    position: relative;
    z-index: 1;
    font-size: 40px !important;
    width: 40px !important;
    height: 40px !important;
    color: #EF4444 !important;
    animation: fxdel-icon-shake 0.5s ease-out 0.3s both;
}

@keyframes fxdel-icon-shake {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-8deg); }
    40%  { transform: rotate(8deg); }
    60%  { transform: rotate(-4deg); }
    80%  { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}

/* ===== Text ===== */
.fxdel-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #2D2350;
    margin-bottom: 10px;
}

.fxdel-message {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.fxdel-item-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #2D2350;
    background: rgba(75, 62, 123, 0.08);
    border: 1px solid rgba(75, 62, 123, 0.18);
    border-radius: 10px;
    padding: 8px 18px;
    margin-bottom: 16px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fxdel-warning {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #B45309;
    background: rgba(180, 83, 9, 0.08);
    border: 1px solid rgba(180, 83, 9, 0.20);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 28px;
}

/* ===== Actions ===== */
.fxdel-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.fxdel-btn-cancel {
    flex: 1;
    border: 2px solid rgba(75, 62, 123, 0.35) !important;
    color: #4B3E7B !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    padding: 11px 0 !important;
    transition: all 0.2s !important;
    text-transform: uppercase !important;
}

.fxdel-btn-cancel:hover {
    background: rgba(75, 62, 123, 0.06) !important;
    border-color: #4B3E7B !important;
}

.fxdel-btn-delete {
    flex: 1;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    padding: 11px 0 !important;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35) !important;
    transition: all 0.2s !important;
    text-transform: uppercase !important;
}

.fxdel-btn-delete:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.45) !important;
}

.fxdel-btn-delete:disabled {
    opacity: 0.75 !important;
}
