.flash-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    height: 50px;
    width: auto;
    max-width: 90%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.flashes {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flash-message {
    background-color: #ff4444;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
    pointer-events: auto;
}