/* Alert styles for CSV preview severities */
.alert {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.alert-icon {
    font-weight: bold;
    line-height: 1.2;
    margin-top: 1px;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.alert-body {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* severity variants */
.alert-abort {
    border-color: #b71c1c;
    background: rgba(183, 28, 28, 0.08);
    color: #5c0f0f;
}
.alert-abort .alert-icon { color: #b71c1c; }

.alert-danger {
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.08);
    color: #6f1f1f;
}

.alert-danger .alert-icon { color: #d32f2f; }

.alert-info {
    border-color: #f9a825;
    background: rgba(249, 168, 37, 0.12);
    color: #6b4c00;
}
.alert-info .alert-icon { color: #f9a825; }

.alert-ok {
    border-color: #9e9e9e;
    background: rgba(158, 158, 158, 0.08);
    color: #4f4f4f;
}
.alert-ok .alert-icon { color: #757575; }


.alert-icon {
    background-color: transparent;
}

/* list of inline warnings in table cells */
.alert-list {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.alert-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0;
}