.alert-icon-x {
    width: 40px;
    height: 40px;
    background-color: #d9534f;   /* đỏ */
    border-radius: 50%;          /* tròn */
    position: relative;
    margin-right: 10px;
    flex-shrink: 0;              /* không bị co lại */
}

/* Dấu gạch chéo thứ 1 */
.alert-icon-x::before,
.alert-icon-x::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    background-color: white;     /* trắng */
    transform-origin: center;
}

/* xoay thành dấu X */
.alert-icon-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.alert-icon-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}