.container { 
    margin: 40px auto; 
    padding: 0 20px; 
}
.main-content { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
}
.left-column { 
    flex: 1; 
    min-width: 250px; 
}
.cover-image img { 
    width: 100%; 
    height: auto; 
    border-radius: 10px; 
    transition: box-shadow 0.3s ease;
}
.cover-image img:hover { 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); 
}
.info-box { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border: 1px solid var(--border-color); 
    background-color: var(--surface-color); 
    border-radius: 8px; 
    padding: 10px 15px; 
    margin-top: 15px; 
    font-size: 1.1em;
}
.right-column { 
    flex: 2.5; 
    min-width: 300px; 
}
.title-section { 
    border: 1px solid var(--border-color); 
    background-color: var(--surface-color); 
    border-radius: 15px; 
    padding: 20px;
}
.title-section h1 { 
    margin: 0 0 10px 0; 
    font-size: 2.2em;
    font-family: 'WildWords', sans-serif;
    text-shadow: none;
}
.status { 
    display: inline-block; 
    background-color: var(--highlight-color); 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    padding: 4px 12px; 
    margin-bottom: 15px; 
    font-size: 0.9em;
}
.description { 
    font-size: 1em; 
    color: var(--secondary-text-color); 
    line-height: 1.6;
    max-height: 200px; 
    overflow-y: auto; 
    padding-right: 10px;
    font-family: Arial, sans-serif;
}
.description::-webkit-scrollbar { width: 6px; }
.description::-webkit-scrollbar-track { background: var(--surface-color); }
.description::-webkit-scrollbar-thumb { background: #555; border-radius: 3px; }

.chapters-section { 
    border: 1px solid var(--border-color); 
    background-color: var(--surface-color); 
    border-radius: 15px; 
    padding: 20px; 
    margin-top: 20px; 
}
.chapter-nav { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px; 
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.nav-button { 
    background-color: var(--highlight-color); 
    border: 1px solid var(--border-color); 
    color: var(--primary-text-color); 
    border-radius: 8px; 
    ppadding: 12px 20px;  /* Nagyobb belső tér */
    font-size: 1em;      /* Nagyobb betűméret */
    cursor: pointer; 
    text-decoration: none; 
    transition: background-color 0.2s;
}
.nav-button:hover { 
    background-color: #444; 
}
.chapter-list-container { 
    max-height: 400px; 
    overflow-y: auto; 
    padding-right: 10px; 
}
.chapter-list-container::-webkit-scrollbar { width: 8px; }
.chapter-list-container::-webkit-scrollbar-track { background: var(--surface-color); }
.chapter-list-container::-webkit-scrollbar-thumb { background: #555; border-radius: 4px; }
.chapter-item-wrapper {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 8px;
}
.chapter-item-wrapper:hover {
    background-color: var(--highlight-color);
}
.chapter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    padding: 12px 10px;
}
.chapter-details {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}
.title-and-date {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 4px;
}
.chapter-title {
    font-size: 1.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-text-color);
}
.upload-date {
    color: var(--secondary-text-color);
    font-size: 0.8em;
    font-family: Arial, sans-serif;
}
.chapter-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}