/**
 * Egyedi Popup Stílusok
 * Jobb alsó sarok, overlay nélkül
 */

/* Popup konténer - jobb alsó sarok */
.egyedi-popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    padding: 25px;
    box-sizing: border-box;
    animation: egyediPopupSlideIn 0.4s ease-out;
}

/* Megjelenési animáció */
@keyframes egyediPopupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bezárás animáció */
.egyedi-popup-container.hiding {
    animation: egyediPopupSlideOut 0.3s ease-in forwards;
}

@keyframes egyediPopupSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Bezáró gomb */
.egyedi-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

p.popuznenet {
    font-family: "Poppins", Sans-serif;
    color: black;
    font-size: 15px;
    font-weight: 400;
}

.egyedi-popup-close:hover {
    background: #e0e0e0;
    color: #333;
}

.egyedi-popup-title {
    margin: 0 0 12px 0;
    padding-right: 30px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
}

/* Tartalom */
.egyedi-popup-content {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.egyedi-popup-content p {
    margin: 0 0 10px 0;
}

.egyedi-popup-content p:last-child {
    margin-bottom: 0;
}

.egyedi-popup-content a {
    color: #0073aa;
    text-decoration: underline;
}

.egyedi-popup-content a:hover {
    color: #005177;
}

.egyedi-popup-content strong,
.egyedi-popup-content b {
    font-weight: 700;
    color: #333;
}

.egyedi-popup-content em,
.egyedi-popup-content i {
    font-style: italic;
}

.egyedi-popup-content ul,
.egyedi-popup-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.egyedi-popup-content li {
    margin-bottom: 5px;
}

.egyedi-popup-button {
    color: #ffffff !important;
    background-color: #5C73F2;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    padding: 12px 35px;
    display: inline-block;
    border-radius: 50px;
    border: 2px solid #5C73F2;
    font-weight: 600;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.egyedi-popup-button:hover {

    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
}

.egyedi-popup-button:active {
    transform: translateY(0);
}

/* Mobil nézet */
@media screen and (max-width: 480px) {
    .egyedi-popup-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        padding: 20px;
    }
    
    .egyedi-popup-title {
        font-size: 16px;
    }
    
    .egyedi-popup-content {
        font-size: 13px;
    }
    
    .egyedi-popup-button {
        display: block;
        width: 100%;
        padding: 14px 20px;
    }
}
