/* Custom container for the alert message */
.custom-alert-container {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

/* General Custom Alert Box Styling */
.custom-alert {
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for subtle depth */
    margin-top: 5px;
    display: flex;
    align-items: center; /* Center the icon and text vertically */
    justify-content: center; /* Center the content horizontally */
}

/* Add icon to the left of the alert text */
.custom-alert i {
    font-size: 20px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

/* Info Alert (Default) */
.custom-alert-info {
    background-color: #3498db; /* Info Blue */
}

/* Success Alert */
.custom-alert-success {
    background-color: #2ecc71; /* Success Green */
}

/* Error Alert */
.custom-alert-error {
    background-color: #e74c3c; /* Error Red */
}

/* Warning Alert */
.custom-alert-warning {
    background-color: #f39c12; /* Warning Yellow */
}

/* Alert Alert (Neutral) */
.custom-alert-alert {
    background-color: #9b59b6; /* Neutral Purple */
}

/* Strong text styling */
.custom-alert strong {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
    .custom-alert {
        width: 90%;
        font-size: 14px; /* Slightly smaller font for smaller screens */
    }

    .custom-alert-container {
        padding: 12px;
    }
}
