/* Alert Dialog Styles (extension of modals.css) */

/* Alert body: centered text layout */
.nexom-alert-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem 1.5rem;
}

/* Alert icon with color glow */
.nexom-alert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--alert-color-rgb), 0.1);
    border: 1px solid rgba(var(--alert-color-rgb), 0.2);
    color: var(--alert-color);
    box-shadow: 0 0 30px rgba(var(--alert-color-rgb), 0.15);
}

.nexom-alert-icon i {
    width: 28px;
    height: 28px;
}

/* Title & Message */
.nexom-alert-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.nexom-alert-message {
    font-size: 0.95rem;
    color: var(--c-text-ghost);
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
}

/* Footer centered for alerts */
.nexom-alert-footer {
    justify-content: center;
    padding: 1.25rem 2rem 2rem;
    border-top: none;
    gap: 0.75rem;
}

/* Alert Buttons */
.nexom-alert-btn {
    padding: 0.6rem 1.75rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 100px;
}

/* Ghost variant (Cancel) */
.nexom-alert-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-text-ghost);
}

.nexom-alert-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.03);
}

/* Accent variant (OK / Confirm) */
.nexom-alert-btn-accent {
    background: var(--alert-color);
    color: var(--c-bg);
    box-shadow: 0 4px 15px rgba(var(--alert-color-rgb), 0.3);
}

.nexom-alert-btn-accent:hover {
    box-shadow: 0 8px 25px rgba(var(--alert-color-rgb), 0.4);
}

.nexom-alert-btn-accent:active {
    transform: translateY(0);
}