#manga-reader {
    text-align: center;
    position: relative;
}

#manga-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 80%;
    height: 600px;
    margin: 0 auto;
}

.manga-page {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.manga-page::after {
    content: attr(data-page); /* Номер страницы */
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 16px;
    border-radius: 3px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Полноэкранный режим */
#manga-reader.fullscreen {
    width: 100%;
    height: 100%;
}

.manga-page::after {
    content: attr(data-page); /* Выводим значение атрибута data-page */
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 16px;
    border-radius: 3px;
}