   .popup-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideIn 0.4s ease;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border-left: 5px solid #dc3545;
}

.alert-success {
   background-color: #d7f8db;
    color: #13af3e;
    border-left: 5px solid #35dc50;
}

/*.close-btn {*/
/*    position: absolute;*/
/*    top: 8px;*/
/*    right: 12px;*/
/*    cursor: pointer;*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*    color: #842029;*/
/*}*/

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}