.custom-alert {
    display: none;
    position: fixed;
    bottom: 20px;
    right:0;
    transform: translateX(-50%);
    /* Center horizontally */
    background-color: #29843B;
    /* Success background */
    width: 200px;
    color: white;
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.custom-alert.show {
    display: block;
    opacity: 1;

}

.custom-alert.error {
    background-color: #f44336;
    /* Error background */
}

.custom-alert.warning {
    background-color: #ff9800;
    /* Warning background */
}

.custom-alert.info {
    background-color: #2196F3;
    /* Info background */
}

.close-btn {
    background: none !important;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

.custom-btn {
    border: none;
    padding: 5px 13px;
    font-size: 15px;
}

.btn-light:hover {
    background: lightgray;
    transition: all .5s;
}

.btn-danger {
    background: #f74780;
    color: white;
    font-size: 15px;
}




