﻿.notification {
    /*position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #38c172;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: bold;
    animation: fadeIn 0.3s ease-out;*/
    /* Példa értesítési stílus */

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background-color: #f2dede;
            color: #a94442;*/
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 9999; /* Biztosítjuk, hogy más elemek fölé kerüljön */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
