.message-alert {
    position: relative;
    z-index: 1050;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.alert-success {
    border-left-color: #28a745;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    border-left-color: #dc3545;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-dismissible .close {
    padding: 0.75rem 1.25rem;
    color: inherit;
}


/* Utility class to replace inline styles */
.hidden {
    display: none !important;
}
