.popup-container {
    text-align: left;
    margin-top: -60px;
}

.popupRisorse {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.popupRisorse thead th {
    background-color: #3498db;
    color: white;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}


.popupRisorse tbody tr {
    border-bottom: 1px solid #ddd;
}


.popupRisorse td {
    padding: 10px;
    text-align: left;
}

.popupRisorse tbody tr:hover {
    background-color: #f2f2f2;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0.9;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}

.toast.fade {
    opacity: 0;
    transform: translateY(20px);
}





