.flash-message {
    position: fixed;
    top: 200px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for exact centering */
    background-color: #7dad39; /* Success green */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.flash-message.error {
    background-color: #dc3545; /* Error red */
}

.flash-message.info {
    background-color: #007bff; /* Info blue */
}

.flash-message .close-flash {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}
