/* ==================== GOOGLE FONTS ==================== */
/* Loaded via <link> in HTML:
   Playfair Display (headings)
   Montserrat (body)
*/

/* -------------------- TYPOGRAPHY -------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}

body, p, li, a, button, .subtitle, .plan-desc, .faq-answer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
}

button, .cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* -------------------- SITE NAVIGATION -------------------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.nav-container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1rem 1.5rem !important;
    min-width: 80vw;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
    letter-spacing: -1.5px;
    word-spacing: 2px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #c5a059;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    .nav-links a {
        margin-left: 0;
    }
}

/* -------------------- BODY -------------------- */
body {
    margin: 0;
    padding: 0;
    background: #dadada;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* -------------------- HERO / LANDING -------------------- */
.hero {
    position: relative;
    min-height: 70vh;
    text-align: center;
    padding: 5rem 1.5rem;
    background-image: url("../images/cover_q1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    justify-content: center;
    display: flex;
    width: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.hero h1 {
    font-size: 65px;
}

.hero h1, .hero h2, .hero .subtitle {
    color: #fff;
}

.hero-content h1 {
    margin-bottom: 4rem;
    letter-spacing: -5px;
    word-spacing: 6px;
    font-weight: 600;
}

a.primary-button {
    background: white;
    padding: 12px 15px;
    border-radius: 14px;
    border: black;
}

.hero .subtitle {
    margin-bottom: 6rem !important;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #c5a059;
}

/* FOOTER */

footer.site-footer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}

.footer-container {
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: #444;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #c5a059;
    transform: translateY(-3px);
}

.site-footer p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #999;
    margin: 0;
    text-transform: uppercase;
}

/* -------------------- CONTAINER -------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

main.container {
    flex: 1 0 auto;
}

.subtitle {
    color: #ddd;
    margin-bottom: 3rem;
}

.container .subtitle {
    color: #555;
}

/* -------------------- FEATURED RELEASE CARD -------------------- */

.release-teaser-card {
    max-width: 750px; 
    height: 350px; 
    margin: 2rem auto 4rem;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden; 
    display: flex;
}

.release-teaser-card:hover {
    border-color: #c5a059;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.teaser-flex {
    display: flex;
    width: 100%;
}

.teaser-left { 
    flex: 1.4; 
    text-align: left; 
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teaser-right { 
    flex: 0.6; 
    background: #fcfcfc; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 18rem;
}

.hero-image-wrapper { height: 100%; width: 100%; }
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

/* -------------------- MODAL OVERLAY -------------------- */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    max-width: 1000px;
    width: 95%;
    height: 80vh; 
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-grid { 
    display: flex; 
    width: 100%; 
    height: 100%;
}

.modal-info {
    flex: 1.3; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2rem;
    overflow-y: auto; 
}

.modal-info-inner {
    max-width: 440px; 
    padding: 1rem;
}

.modal-image {
    flex: 0.7; 
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-close, .reader-close {
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
}

.modal-close:hover, .reader-close:hover {
    background: #fff;
    border-color: #c5a059;
    color: #c5a059;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.teaser-badge { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: #c5a059; margin-bottom: 0.5rem; font-weight: 700; }
.hero-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 0; color: #000; letter-spacing: -2px; }
.hero-issue-meta { font-size: 0.8rem; margin: 0.3rem 0; color: #888; text-transform: uppercase; }
.hero-issue-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: #444; margin: 0; }
.click-hint { font-size: 0.75rem; font-weight: 600; margin-top: 1.5rem; color: #c5a059; }

.modal-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin: 0.5rem 0; line-height: 1.1; color: #000; }
.modal-intro { color: #888; font-style: italic; margin-bottom: 1.5rem; font-size: 1rem; }
.modal-divider { border: 0; border-top: 1px solid #eee; margin: 1.5rem 0; }
.topic-list { list-style: none; padding: 0; margin: 0; }
.topic-list li { margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.5; color: #444; }
.topic-list strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #000; margin-bottom: 0.3rem; }

/* -------------------- PRICING GRID -------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan {
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1rem 0;
}

.plan button {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.plan button:hover {
    transform: translateY(-3px);
    background: #c5a059;
}

/* -------------------- FAQ -------------------- */
.faq-item {
    border-top: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding: 0 1rem 0;
    color: #444;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

/* -------------------- RESPONSIVE REFINEMENT -------------------- */
@media (max-width: 850px) {
    /* REDUCED SCALING FOR MOBILE */
    .release-teaser-card { height: auto; flex-direction: column; max-width: 90%; margin-bottom: 3rem; }
    .teaser-flex, .modal-grid { flex-direction: column; }
    
    .teaser-left { padding: 2rem 1.2rem; text-align: center; }
    .hero-brand { font-size: 1.6rem; } 
    .hero-issue-title { font-size: 1.3rem; }
    .hero-issue-meta { font-size: 0.85rem; }

    .modal-content { 
        height: 75vh; 
        width: 92%;
        overflow-y: auto; 
        flex-direction: column; 
    }
    
    .modal-image { 
        order: -1; 
        height: 220px; 
        flex: none; 
        padding: 15px;
    }

    .modal-title { font-size: 1.8rem; }
    .topic-list li { font-size: 0.95rem; }
    
    .teaser-right { height: 240px; padding: 15px; min-width: unset; }
    .teaser-left, .modal-info { text-align: center; padding: 1.5rem 1.2rem; }
    .modal-info-inner { max-width: 100%; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .plan { padding: 2rem 1.2rem; }
    .plan h2 { font-size: 1.5rem; }
    .plan-price { font-size: 1.25rem; }
    
    .cta-button, .plan button { width: auto; font-size: 1rem; padding: 1rem; }
    .faq-question { font-size: 1rem; padding: 1.2rem 0.8rem; } 
    
    .container { padding: 2rem 1rem; }
    .container h1 { font-size: 1.8rem; text-align: center; }
    .container .subtitle { font-size: 0.95rem; text-align: center; }

    .hero { padding: 3.5rem 1rem; min-height: 60vh; width: 100%; }
    /* Fix Hero H1 specifically */
    .hero h1 { font-size: 42px !important; margin-bottom: 2rem; }
    .hero .subtitle { margin-bottom: 3rem !important; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero-brand { font-size: 1.5rem; letter-spacing: -1px; }
    .hero h1 { font-size: 32px !important; letter-spacing: -2px; }
    .modal-content { width: 95%; height: 90%; }
    .brand { font-size: 1.2rem; }
}

/* ==================== ACCOUNT / SUBSCRIPTION ==================== */

.account-page {
    min-height: 75vh;
    background: #faf9f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.account-card {
    background: #fff;
    max-width: 460px;
    width: 100%;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.account-card h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.account-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.account-card form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.account-card input[type="email"] {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.account-card input[type="email"]:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

.account-card button {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.account-card button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.account-card .account-note {
    margin-top: 1.75rem;
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.account-error {
    background: #fff4f4;
    border: 1px solid #e5bcbc;
    color: #8a1f1f;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .account-card { padding: 2rem 1.5rem; }
    .account-card h1 { font-size: 1.8rem; }
}

/* ==================== DIGITAL READER ==================== */

.reader-body {
    background: #1a1a1a; 
    overflow: hidden;
    height: 100vh;
    height: 100dvh; 
    display: flex;
    flex-direction: column;
}

.reader-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reader-container {
    flex: 1;
    overflow: auto;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

#viewer {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    min-width: 100%;
    min-height: 100%;
}

.canvas-wrapper {
    position: relative; 
    flex-shrink: 0;
    line-height: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    background: #fff;
    margin: 1rem !important;
    margin-top: 3rem !important; 
}

.annotationLayer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.annotationLayer a {
    display: block;
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
}

@media (max-width: 480px) {
    .canvas-wrapper { margin: 0.5rem !important; margin-top: 4.5rem !important; }
}

.canvas-wrapper canvas {
    display: block;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-drag: none;
    image-rendering: -webkit-optimize-contrast;
}

.reader-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    border: 1px solid #ddd;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ui-hidden { opacity: 0 !important; pointer-events: none; }

@media (max-width: 768px) {
    .reader-header { position: fixed; top: 0; left: 0; right: 0; background: #fff !important; }
    .reader-header.ui-hidden { transform: translateY(-100%); }
    .reader-controls.ui-hidden { transform: translate(-50%, 100px); }
}

.reader-controls button {
    background: none;
    border: none;
    color: #000;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s;
}

.reader-controls button:hover { color: #c5a059; }

.page-indicator {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    padding: 5px 15px;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.page-indicator:hover {
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
}

.jump-menu {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    height: 250px;
    overflow-y: auto;
    width: 100px;
    z-index: 3000;
}

.jump-menu::-webkit-scrollbar {
    width: 6px;
}
.jump-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.jump-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.jump-menu button {
    background: none !important;
    border: none;
    padding: 10px;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    cursor: pointer;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.jump-menu button:hover {
    background: #fcf8f0 !important;
    color: #c5a059 !important;
}

.jump-menu button.active {
    font-weight: 700;
    color: #000;
    background: #f4f4f4 !important;
}

.nav-zone {
    position: fixed;
    top: 60px;
    bottom: 80px;
    width: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: background 0.3s ease, opacity 0.4s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-zone-left { left: 0; }
.nav-zone-right { right: 0; }

.nav-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-family: serif;
    pointer-events: none;
}

.nav-zone:hover .nav-arrow { opacity: 1; color: rgba(255, 255, 255, 0.8); }
.nav-zone-left:hover .nav-arrow { transform: translateX(-10px); }
.nav-zone-right:hover .nav-arrow { transform: translateX(10px); }

.issue-selector {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    left: -6rem;
}

.select-group { display: flex; align-items: center; gap: 8px; }
.select-group label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; color: #999; }
.select-group select {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    padding: 4px 8px;
    cursor: pointer;
}

/* ==================== AUTH PAGE ==================== */

.auth-page-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-box {
    background: #fff;
    max-width: 400px;
    width: 100%;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-box h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.auth-box p.auth-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.auth-box input[type="email"],
.auth-box input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s;
}

.auth-box input:focus {
    outline: none;
    border-color: #000;
}

.auth-box button {
    width: 100%;
    padding: 1rem;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-box button:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.auth-box .note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #777;
}

.auth-box .note a {
    color: #c5a059;
    text-decoration: none;
    font-weight: 600;
}

.auth-box .note a:hover {
    text-decoration: underline;
}

.hidden { display: none !important; }

@media (max-width: 480px) {
    .auth-box { padding: 2rem 1.5rem; }
    .auth-box h1 { font-size: 1.8rem; }
}

canvas {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ==================== MOBILE FIXES FOR READER ==================== */

@media (max-width: 600px) {
    .reader-header {
        padding: 0.4rem 0.75rem;
        height: auto;
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0;
    }

    .reader-header .brand {
        font-size: 0.85rem;
        width: auto;
        text-align: left;
        margin-bottom: 0;
        grid-column: 1;
        letter-spacing: -1px;
    }

    .issue-selector {
        left: 0;
        gap: 8px;
        grid-column: 2;
        justify-content: center;
    }
    
    .select-group label { font-size: 0.5rem; }
    .select-group select { font-size: 0.65rem; padding: 2px 4px; }

    .reader-close {
        grid-column: 3;
        justify-self: end;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .reader-controls {
        bottom: 20px;
        width: 90%;
        padding: 0.4rem 0.8rem;
        gap: 8px;
        justify-content: space-between;
    }

    .reader-controls button {
        font-size: 0.65rem;
        padding: 4px;
        min-width: unset;
    }

    .page-indicator {
        font-size: 0.7rem;
        padding: 4px 6px;
        min-width: 45px;
    }

    #toggleSpreadBtn {
        display: none; 
    }
}
