/* Alert Blocks – frontend stijlen */

.alert-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 16px 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.alert-block p {
    margin: 0;
}

/* Info – blauw */
.alert-block--info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.alert-block--info::before {
    content: "ℹ";
    font-size: 1.25rem;
    color: #1e40af;
    flex-shrink: 0;
    line-height: 1.4;
}

/* Waarschuwing – geel */
.alert-block--warning {
    background-color: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde68a;
}

.alert-block--warning::before {
    content: "⚠";
    font-size: 1.25rem;
    color: #854d0e;
    flex-shrink: 0;
    line-height: 1.4;
}

/* Foutmelding – rood */
.alert-block--error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-block--error::before {
    content: "⊘";
    font-size: 1.25rem;
    color: #991b1b;
    flex-shrink: 0;
    line-height: 1.4;
}

/* Succes – groen */
.alert-block--success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-block--success::before {
    content: "✔";
    font-size: 1.25rem;
    color: #166534;
    flex-shrink: 0;
    line-height: 1.4;
}
