/* Alert Component CSS */

.alert {
    min-width: 300px;
    max-width: 450px;
}

.alert-body {
    display: flex;
    gap: 12px;
    padding: 16px;
}

.alert-icon {
    font-size: 32px;
    line-height: 1;
}

.alert-icon.info::before { content: 'i'; color: #0000ff; }
.alert-icon.warning::before { content: '!'; color: #ff9800; }
.alert-icon.error::before { content: 'X'; color: #f44336; }
.alert-icon.success::before { content: ''; color: #4caf50; }

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.alert-message {
    line-height: 1.4;
}

.alert-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px 16px;
    border-top: 1px solid #808080;
}

.alert-action {
    min-width: 75px;
}

/* Dialog variants */
.dialog-confirm .alert-actions {
    justify-content: center;
}
