/* ── ALERTS ── */
.pad-all {
    padding: 0 0 12px 0;
}

.alert {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    border: 0.5px solid transparent;
}

.alert:last-child { margin-bottom: 0; }

.alert-danger {
    background: #FEE2E2;
    color: #b91c1c;
    border-color: #FECACA;
}

.alert-success {
    background: #E1F5EE;
    color: #0d6e56;
    border-color: #A7F3D0;
}

.alert-warning {
    background: #FEF3C7;
    color: #b45309;
    border-color: #FDE68A;
}

.alert-info {
    background: #EBF3FF;
    color: #185FA5;
    border-color: #C8DFF7;
}

.alert .close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: inherit;
    opacity: .6;
    padding: 0;
    flex-shrink: 0;
}

.alert .close:hover { opacity: 1; }