/**
 * Akciós Újság Flipbook CSS
 */

/* ── Fő wrap ── */
.akcios-ujsag-wrap {
    width: 100%;
    margin: 0 auto;
    font-family: sans-serif;
    box-sizing: border-box;
}

/* ── Archívum gombok ── */
.au-archive-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.au-archive-btn {
    padding: 8px 16px;
    font-family: "proxima-nova", Sans-serif;
    font-size: 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #251d1e;
    font-weight: 500;
}

.au-archive-btn:hover {
    border-color: #e62225;
    color: #e62225;
}

.au-archive-btn.active {
    background: #e62225;
    border-color: #e62225;
    color: #fff;
}

.au-archive-btn-current {
    background: transparent;
    border: 2px solid #ddd;
      color: #251d1e;
        font-weight: 600;
}

/* ── Cím ── */
.au-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    padding: 0;
}

@media (max-width: 767px) {
    .au-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .au-archive-buttons {
        padding: 12px;
        gap: 8px;
    }
    
    .au-archive-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ── Nincs PDF üzenet ── */
.au-no-pdf {
    padding: 40px 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    text-align: center;
}

.au-no-pdf p {
    margin: 0;
    color: #856404;
    font-size: 16px;
}

/* Loading */
.au-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.au-loading-inner {
    text-align: center;
    color: #555;
}

.au-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ddd;
    border-top-color: #e63329;
    border-radius: 50%;
    animation: au-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes au-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Viewer: 90vh, flex oszlop */
.au-viewer {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

/* Fejléc oldal számláló */
.au-header {
    text-align: center;
    padding: 6px 0;
    flex-shrink: 0;
}

.au-pagenum {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Könyv wrap: a maradék helyet tölti ki */
.au-book-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
    width: 100%;
    position: relative;
}

/* A StPageFlip konténer - explicit magasságot JS-ből kap */
.au-book {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Oldalsó navigációs nyilak - sima SVG, semmi más */
.au-nav {
    width: 28px;
    height: 28px;
    fill: #bbb;
    cursor: pointer;
    flex-shrink: 0;
    transition: fill 0.2s;
    display: block;
}

.au-nav:hover {
    fill: #e63329;
}

.au-prev {
    margin-right: 14px;
}

.au-next {
    margin-left: 14px;
}

@media (max-width: 767px) {
    .au-nav {
        width: 20px;
        height: 20px;
    }

    .au-prev {
        margin-right: 8px;
    }

    .au-next {
        margin-left: 8px;
    }
}

/* Hiba */
.au-error {
    padding: 20px;
    background: #fdecea;
    border: 1px solid #e63329;
    border-radius: 6px;
    color: #c0392b;
    text-align: center;
}

/* Még nem renderelt oldal placeholder */
.au-page-loading {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.au-page-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #ddd;
    border-top-color: #e63329;
    border-radius: 50%;
    animation: au-spin 0.8s linear infinite;
}
