.user-msg {
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.5rem 0rem;
    margin: 0.5rem;
    min-width: 100px;
    max-width: 350px;
    border-radius: 0.5rem;
    background-color: #f1f1f1;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-in-out;
    text-align: center;
}

.user-msg.success {
    background-color: #d4edda;
    color: #155724;
}

.user-msg.error {
    background-color: #f8d7da;
    color: #721c24;
}

.user-msg h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-inline: 0.5rem;
}

.user-msg h4 > p {
    margin: 0;
}

.user-msg button {
    background-color: hsl(0 0% 100%/0.35);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    width: fit-content;
    aspect-ratio: 1;
    align-self: end;
    color: inherit;
    border-radius: 50%;
    margin-top: 0.5rem;
    margin-right: 0;

}

.user-msg button:hover {
    background-color: hsl(0 0% 100%/0.55);
    color: black;
}