.avatar {
    width: 50px;
    height: 50px;
    background-color: #574994;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.avatar-sm {
    width: 30px;
    height: 30px;
    background-color: #574994;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.avatar-lg {
    width: 100px;
    height: 100px;
    background-color: #FFB300;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 26px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.notify {
    z-index: 99999;
}

#message {
    display: none;
}

#message p {
    font-size: 12px;
}

.valid {
    color: green;
}

.valid:before {
    content: "✔";
    font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;

}

.invalid {
    color: red;
}

.invalid:before {
    content: "✖";
    font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}