/* OE Cookie Banner Fixed Center Styles */

/* Overlay - teljes képernyős sötét háttér */
.oe-cookie-banner-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Overlay megjelenítve */
.oe-cookie-banner-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Banner slide animáció alulról */
#oe-cookie-banner {
    position: relative;
    background: #1d294d;
    border-radius: 12px;
    padding: 0;
    max-width: 660px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    pointer-events: auto;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Banner megjelenítve */
.oe-cookie-banner-overlay.show #oe-cookie-banner {
    transform: translateY(0);
    opacity: 1;
}


/* Header rész */
.oe-cookie-banner-header {
    padding: 25px 30px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo kép */
.oe-cookie-banner-logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Spacer a jobb oldalon */
.oe-cookie-banner-spacer {
    width: 40px; /* Ugyanolyan széles, mint a logo */
    height: 40px;
}

/* Cím */
.oe-cookie-banner-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    position: relative;
}

/* Tartalom */
.oe-cookie-banner-content {
    padding: 25px 30px 30px 30px;
}

/* Szöveg */
.oe-cookie-banner-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

/* Linkek */
.oe-cookie-banner-links {
    margin-bottom: 25px;
}

.oe-cookie-banner-link {
    color: #4fc3f7;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.oe-cookie-banner-link:hover {
    color: #81d4fa;
}

/* Gombok */
.oe-cookie-banner-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.oe-cookie-banner-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

/* Elfogadás gomb */
.oe-cookie-banner-btn-accept {
    background: #fcaf17;
    color: #ffffff;
    border: 2px solid #fcaf17;
}

.oe-cookie-banner-btn-accept:hover {
    background: #fcaf17;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Elutasítás gomb */
.oe-cookie-banner-btn-reject {
    background: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
}

.oe-cookie-banner-btn-reject:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Beállítások gomb */
.oe-cookie-banner-btn-preferences {
    background: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
}

.oe-cookie-banner-btn-preferences:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Adatvédelmi link */
.oe-cookie-banner-privacy {
    text-align: center;
}

.oe-cookie-banner-privacy-link {
    color: #9ad1f0;
    font-size: 12px;
    transition: color 0.3s ease;
}

.oe-cookie-banner-privacy-link:hover {
    color: #81d4fa;
}

.oe-cookie-banner-preferences-view a {
    color: #fcaf17;
}

.oe-cookie-banner-preferences-view a:hover {
    color: #fcaf17;
}

/* Animációk - CSS transition használata */

/* Reszponzív design */
@media (max-width: 768px) {
    .oe-cookie-banner {
        width: 95%;
        margin: 20px;
        max-height: 90vh;
    }
    
    .oe-cookie-banner-header {
        padding: 20px 20px 15px 20px;
    }
    
    .oe-cookie-banner-content {
        padding: 20px;
    }
    
    .oe-cookie-banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .oe-cookie-banner-btn {
        width: 100%;
        min-width: auto;
    }
    
    .oe-cookie-banner-title {
        font-size: 18px;
    }
    
    .oe-cookie-banner-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .oe-cookie-banner {
        width: 98%;
        margin: 10px;
    }
    
    .oe-cookie-banner-header {
        padding: 15px;
    }
    
    .oe-cookie-banner-content {
        padding: 15px;
    }
    
    .oe-cookie-banner-title {
        font-size: 16px;
    }
}

/* Accessibility */
.oe-cookie-banner:focus {
    outline: none;
}

.oe-cookie-banner-btn:focus {
    outline: 2px solid #4fc3f7;
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    box-sizing: border-box;
}

/* Z-index kezelés */
.oe-cookie-banner {
    z-index: 999999;
}

/* Mobil nézet osztály */
.oe-cookie-banner.mobile-view {
    width: 95%;
    max-width: 400px;
}

.oe-cookie-banner.mobile-view .oe-cookie-banner-buttons {
    flex-direction: column;
}

.oe-cookie-banner.mobile-view .oe-cookie-banner-btn {
    width: 100%;
    margin-bottom: 10px;
}