/* Custom styling for the error icon to match the user's image */
.error-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ef4444; /* Red color */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.error-icon::after {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #ef4444; /* Red color */
    transform: rotate(45deg);
}
