/* Alapértelmezett értesítés konténer */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Egy értesítés */
.notification {
    position: relative;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: #fff;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-info {
    background-color: #2196F3;
}

.notification-success {
    background-color: #4CAF50;
}

.notification-warning {
    background-color: #CC7A00;
}

.notification-error {
    background-color: #f44336;
}



/* Bezáró gomb */
.notification .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}
