.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.popup-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.popup-content {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    border-left: 5px solid #28a745;
}

.popup-notification.error .popup-content {
    border-left-color: #dc3545;
}

.popup-content i {
    font-size: 24px;
}

.popup-notification.success .popup-content i {
    color: #28a745;
}

.popup-notification.error .popup-content i {
    color: #dc3545;
}

.popup-content span {
    flex: 1;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 576px) {
    .popup-notification {
        right: 10px;
        left: 10px;
    }

    .popup-content {
        min-width: auto;
        padding: 15px 20px;
    }

    .popup-content span {
        font-size: 14px;
    }
}
