/* General Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease-in-out;
}

/* Error Alert */
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-danger ul.no-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Success Alert */
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

/* Close Button (Optional) */
.alert .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.alert .close:hover {
    opacity: 1;
}

/* Fade Out Effect */
#error-alert {
    animation: fadeOut 3s 5s forwards;
}

.status-message {
    animation: fadeOut 3s 5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        display: none;
    }
}
