/* static/css/flash_messages.css */

.flash-messages {
    position: fixed;
    top: 80px; /* Adjust if your navbar is taller */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: auto;
    max-width: 90%;
    text-align: center;
    pointer-events: none; /* Prevents click-blocking */
}

.alert {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: auto; /* Allow interaction with alert (like close button) */
}

/* Success message */
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Error message */
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}