.alert {
    position: fixed;
    bottom: 20px;
    /* Position at the bottom */
    right: 20px;
    /* Adjust as needed */
    z-index: 9999;
    /* Ensure it's on top of other elements */
    width: auto;
    /* Adjust width as needed */
    max-width: 600px;
    /* Optional: limit the width */
    height: 100px;
    /* Make the alert thinner */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: add a shadow for better visibility */
    padding: 10px;
    /* Adjust padding for a thinner look */
    display: flex;
    /* Align content horizontally */
    align-items: center;
    /* Center content vertically */
}