/* Base styling for all alert icons */
.alert::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

/* Info alert icon */
.alert-info::before {
    content: "\f05a"; /* circle-info */
}

/* Success alert icon */
.alert-success::before {
    content: "\f00c"; /* check */
}

/* Warning alert icon */
.alert-warning::before {
    content: "\f071"; /* exclamation-triangle */
}

/* Danger alert icon */
.alert-danger::before {
    content: "\f06a"; /* exclamation-circle */
}
