/* Alert container */
.custom-alert {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 9999;
    background-color: #4caf50;  
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-height: 50px;
    max-width: 300px;
    width: 300px;
    word-wrap: break-word;
}

/* Alert visible state */
.custom-alert.show {
    opacity: 1;
}

/* Alert warning type */
.custom-alert.success {
    background-color: #4caf50;  
}

/* Alert error type */
.custom-alert.error {
    background-color: #f44336; 
}

/* Alert warning type */
.custom-alert.warning {
    background-color: #ff9800; 
}

/* Alert warning type */
.custom-alert.info {
    background-color: rgb(22, 22, 224);  
}