.popup-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.popup {
    display: flex;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.popup::before {
    content: '✔';
    color: #5fcf7d;
    font-size: 16px;
    margin-right: 10px;
}

.popup-text {
    font-size: 14px;
    line-height: 1.5;
}

.popup span {
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}