:root {
    --fav-button-bg: #8C4A27;
    --read-button-bg: #4E6977;
    --comment-button-bg: #8C4A27;
}

.manga-container {
    --reader-page-width: 75%;
    --reader-page-gap: 8px;
    --reader-background-color: #000000;
    --reader-image-brightness: 100%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--reader-background-color);
    transition: background-color 0.2s ease;
    position: relative; /* Додано для позиціонування навігаційних зон */
}

.manga-viewer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; /* Зображення манги буде над іншими елементами */
}

.manga-read-images {
    width: var(--reader-page-width);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--reader-page-gap);
}

.manga-image,
.scroll-page {
    max-width: 100%;
    object-fit: contain;
    user-select: none;
    filter: brightness(var(--reader-image-brightness));
    image-rendering: auto;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.manga-container.reader-fit-width .manga-image,
.manga-container.reader-fit-width .scroll-page {
    width: 100%;
    height: auto;
}

.manga-container.reader-fit-height.reader-mode-book .manga-image {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 180px);
}

.manga-container.reader-fit-height.reader-mode-scroll .scroll-page {
    width: auto;
    max-width: 100%;
}

.manga-container.reader-fit-original .manga-image,
.manga-container.reader-fit-original .scroll-page {
    width: auto;
    max-width: none;
    height: auto;
}

/* Прозорі області навігації */
.manga-container .navigation {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    cursor: pointer;
    z-index: 1;
}

.navigation {
    -webkit-tap-highlight-color: transparent; /* Для Android */
    outline: none; /* Видаляємо обводку при фокусуванні */
}

.manga-container .navigation.left {
    left: 0;
}

.manga-container .navigation.right {
    right: 0;
}

.navigation-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    background-color: var(--reader-background-color);
    position: relative;
    z-index: 2; /* Кнопки будуть поверх зон навігації */
}

.pagination button,
.navigation-panel button {
    background-color: #2d2d2d;
    color: #f2f2f2;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination button:hover,
.navigation-panel button:hover {
    background-color: #3b5a77;
}

.navigation-panel span {
    font-size: 16px;
    font-weight: bold;
    color: #f2f2f2;
}

.scroll-page {
    display: block;
    max-width: 100%;
}

/* Кнопка */
/* Меню */
.hidden {
    display: none;
}

.manga-container.reader-mode-scroll .manga-back {
    position: sticky;
    top: 0;
    z-index: 15;
    background: var(--reader-background-color);
    padding-bottom: 12px;
}

.manga-container.reader-mode-scroll .navigation {
    display: none;
    pointer-events: none;
}

.manga-container.reader-mode-scroll.reader-scroll-chapter-navigation .navigation {
    display: block;
    pointer-events: auto;
}

/* details */
.details-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Основний блок */
.manga-main-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Блок з прев'ю */
.preview-image {
    flex: 1;
    max-width: 40%; /* Прев'ю займає 40% ширини */
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Блок з текстовою інформацією */
.manga-info {
    flex: 2; /* Інформація займає 60% ширини */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.manga-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.manga-info p {
    margin: 0;
    font-size: 16px;
    color: #ccc;
}

.manga-info strong {
    color: #f2f2f2;
}

/* Жанри як теги */
.genre {
    display: inline-block;
    color: #f2f2f2;
    background: #3d3d3d;
    border-radius: 4px;
    font-size: 14px;
    padding: 3px 5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    margin-bottom: 5px;
}

.genre:hover {
    background: #4d4d4d;
}

.genre a {
    color: #fff;
    text-decoration: none;
}

/* Кнопка улюбленого */
.favorite-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #f2f2f2;
    background-color: #ff4081;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.comment-btn {
    margin-left: 2.5%;
    padding: 10px 20px;
    font-size: 16px;
    color: #f2f2f2;
    background-color: #ff4081;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.read-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #f2f2f2;
    background-color: #4a76a8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.read-btn:hover {
    background-color: #3b5a77;
}

.download-cbr-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #f2f2f2;
    background-color: #4a76a8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.download-cbr-btn:hover {
    background-color: #3b5a77;
}

.favorite-btn:hover {
    background-color: #cf3468;
}

.comment-btn:hover {
    background-color: #cf3468;
}

/* Опис */
.description-section {
    margin-top: 20px;
}

.description-section h2 {
    font-size: 20px;
    color: #f2f2f2;
    margin-bottom: 10px;
}

.description-section p {
    font-size: 16px;
    color: #ccc;
}

.manga-main-content .dark-form label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff; /* Білий текст */
}

.manga-main-content .dark-select {
    padding: 8px;
    border: 1px solid #444; /* Темно-сірий бордер */
    background-color: #3a3a3a; /* Трохи світліший фон */
    color: #ffffff; /* Білий текст */
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.manga-main-content .dark-select:focus {
    border-color: #6c63ff; /* Фіолетовий колір при фокусі */
    outline: none;
}

.manga-main-content .dark-button {
    padding: 10px 20px;
    background-color: #4a76a8; /* Фіолетова кнопка */
    color: #ffffff; /* Білий текст */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.manga-main-content .dark-button:hover {
    background-color: #514ac1; /* Темніший фіолетовий при наведенні */
}

.manga-main-content .dark-button:active {
    background-color: #3b3692; /* Ще темніший фіолетовий при натисканні */
}

.preview-manga-button {
    display: block;
}

.preview-manga-ph-button {
    display: none;
}

/* Стилі для форми */
#comment-form {
    background-color: #1e1e1e; /* Темний фон форми */
    border-radius: 8px;
    margin: 16px 0px;
    width: 100%;
}

.comments-section #comment-form h2 {
    text-align: center;
}

/* Текстове поле */
#comment-form textarea {
    width: 95%;
    margin-left: 2.5%;
    background-color: #2c2c2c; /* Темний фон текстового поля */
    color: #fff; /* Білий текст */
    border: 1px solid #444; /* Тонкий бордюр */
    border-radius: 4px;
    font-size: 16px;
    resize: none; /* Заборона змінювати розмір */
    height: 100px;
    outline: none; /* Прибирає стандартне підсвічування */
}

/* Підсвічування текстового поля при фокусі */
#comment-form textarea:focus {
    border-color: #007bff; /* Блакитний бордюр при фокусі */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Кнопка */
#comment-form .submit-btn {
    background-color: #007bff; /* Блакитний фон кнопки */
    color: #fff; /* Білий текст */
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    display: inline-block;
}

/* Кнопка при наведенні */
#comment-form .submit-btn:hover {
    background-color: #0056b3; /* Трохи темніший блакитний */
}

/* Кнопка при фокусі */
#comment-form .submit-btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Вирівнювання форми */
#comment-form .form-group {
    margin-bottom: 16px;
}

.comments-section {
    background-color: #1e1e1e; /* Темний фон */
    color: #fff; /* Білий текст */
    border: 1px solid #333; /* Бордюр */
    border-radius: 8px;
    padding: 16px 0px;
    margin-top: 20px;
    width: 80%;
    margin-left: 10%;
}

.comments-section-2 {
    padding: 0px 16px;
}

.comments-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.comment {
    border-bottom: 1px solid #444; /* Розділення коментарів */
    padding: 10px 0;
}

.comment .sub-comment {
    padding: 0px 20px;
}

.comment:last-child {
    border-bottom: none; /* У останнього коментаря без бордюра */
}

.comment-header {
    justify-content: space-between;
    font-size: 14px;
    color: #bbb; /* Світло-сірий текст */
}

.comment-user {
    font-weight: bold;
    color: #fff; /* Яскравий білий */
}

.comment-page {
    color: #777; /* Акцент на сторінці */
}

.comment-date {
    font-style: italic;
    color: #777; /* Тьмяний сірий */
}

.comment-body {
    margin-top: 8px;
    font-size: 16px;
    color: #fff;
}

.comment-body .reaction-buttons button {
    color: #888;
    background: none;
    border: none;
    padding: 5px;
    margin-right: 10px;
    margin-left: -5px;
}

.comment-body .reaction-buttons button:hover {
    color: #fff;
    cursor: pointer;
    background: #2e2e2e;
    border-radius: 0.25em;
}

.comment-body .reaction-buttons button img {
    max-width: 20px;
    vertical-align: middle;
}

#replay_username {
    background: #404040;
    border-radius: 1em;
    padding: 3px 5px 3px 7.5px;
    margin-right: 5px;
}

.reply-input textarea {
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
    height: 75px;
    outline: none;
    margin-bottom: 10px;
}

.submit-reply {
    padding: 7.5px 10px;
    font-size: 16px;
    color: #f2f2f2;
    background-color: #ff4081;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chapter-count {
    background: #171717;
    padding: 5px 10px;
    margin-top: 15px;
    border-radius: 0.25em;
}

.chapter-count h3 {
    margin: 0px;
}

.manga-chapters {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 12px 0;
    max-height: 275px;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    color: #e8e8e8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    /* натяк, що є скрол */
    mask-image: linear-gradient(to bottom, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent);
}

.chapters-title {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
}

.chapters-list {
    list-style: none;
    margin: 0;
    padding: 5px 10px;
    background: #141414;
    border-radius: 0.5em;
}

.chapters-list li {
    margin: 5px 0px 0px 0px;
}

.chapter {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #e8e8e8;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.chapter:hover {
    background: #2a2a2a;
}

.chapter.active:hover {
    background: #4a4a4a;
}

.chapter.active {
    background: #3a3a3a;
    font-weight: 500;
    color: #fff;
}

.chapter-name {
    color: #b0b0b0;
}

.chapter-status {
    font-size: 13px;
    color: #8a8a8a;
    margin-left: 4px;
}

/* акуратний скролбар */
.manga-chapters::-webkit-scrollbar {
    width: 5px;
}

.manga-chapters::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}
.manga-chapters::-webkit-scrollbar-thumb:hover {
    background: #777;
}

#preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#preloader.hidden {
    display: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.manga-info #icon {
    position: absolute;
    margin-left: 5px;
    margin-top: -2px;
    width: 25px;
}

.manga-back {
    position: fixed;
    z-index: 1001;
    font-size: 1.2em;
    display: block ruby;
    text-align: center;
    width: 100%;
    left: 0;
    background: rgba(18, 18, 18, 0.8);
    top: 0;
    padding: 10px 0px;
}

.manga-back #manga-data {
    text-align: left;
    padding-left: 25px;
}

.manga-back a {
    color: #d6d6d6;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.manga-back a:hover {
    background-color: #555;
}

.manga-back select {
    padding: 10px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.manga-back select:hover {
    background-color: #555;
}


.preview-links a {
    color: #ccc;
    text-decoration: none;
}

.preview-links a:hover {
    color: #ebebeb;
}

.preview-manga-button a {
    width: auto !important;
    text-align: center;
    display: block;
    text-decoration: none;
}

.reviews-shell {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-top: 24px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reviews-title {
    font-size: 22px;
    font-weight: 700;
}

.review-access-note {
    color: #b1b1b1;
    margin-top: 12px;
}

.review-form {
    margin-top: 20px;
    padding: 18px;
    border-radius: 10px;
    background: #222;
}

.review-form.is-hidden {
    display: none;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ddd;
}

.review-form-field-wide {
    grid-column: span 1;
}

.review-form-field select,
.review-form-field textarea {
    background: #121212;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f5f5f5;
    padding: 12px;
    resize: vertical;
}

.review-form-field textarea {
    min-height: 120px;
}

.review-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.review-cancel-btn,
.reviews-load-more,
.review-vote-btn {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.review-cancel-btn:hover,
.reviews-load-more:hover,
.review-vote-btn:hover {
    background: #2b2b2b;
}

.write-btn {
    background: #ff3c7f;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.write-btn:hover {
    background: #ff5c98;
}

.write-btn:disabled,
.review-cancel-btn:disabled,
.reviews-load-more:disabled,
.review-vote-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.reviews-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.rating-box {
    min-width: 120px;
    text-align: center;
}

.rating-number {
    font-size: 40px;
    font-weight: 700;
}

.rating-stars,
.review-stars {
    color: #f4c542;
}

.rating-stars {
    font-size: 20px;
}

.rating-text {
    color: #aaa;
}

.rating-bars {
    flex: 1;
}

.bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

.progress {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 999px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ff3c7f;
    border-radius: 999px;
}

.reviews-list {
    display: grid;
    gap: 15px;
}

.review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    background: #252525;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-name {
    font-weight: 700;
}

.review-date {
    color: #aaa;
    font-size: 12px;
}

.review-text {
    margin-top: 15px;
    line-height: 1.6;
    color: #ddd;
}

.review-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.review-votes {
    display: flex;
    gap: 10px;
}

.review-vote-btn.is-active {
    border-color: #ff3c7f;
    color: #ff8eb2;
}

.reviews-empty {
    background: #222;
    border-radius: 10px;
    color: #bdbdbd;
    padding: 18px;
}

.reviews-loading {
    text-align: center;
}

.show-all {
    text-align: center;
    margin-top: 20px;
}

.rate-btn {
    max-width: 18px;
    max-height: 20px;
    margin-left: 2.5px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .details-container {
        border-radius: 0px;
    }
    .manga-container {
        width: 100%;
        margin-left: 0%;
    }
    .main-content {
        padding: 0px !important;
    }
    .preview-manga-button {
        display: none;
    }
    .preview-manga-ph-button {
        display: block;
    }
    .preview-manga-ph-button a {
        width: auto !important;
        text-align: center;
        display: block;
        text-decoration: none;
    }
    .manga-main-content {
        display: block;
    }
    .comments-section {
        border: none;
        border-radius: 0px;
        width: 100%;
        margin-left: 0%;
    }

    .reviews-shell {
        border-radius: 0;
        padding: 18px;
    }
    .reviews-header,
    .reviews-stats,
    .review-top,
    .review-form-grid,
    .review-form-actions {
        display: block;
    }
    .write-btn,
    .review-cancel-btn,
    .reviews-load-more,
    .review-vote-btn {
        width: 100%;
    }
    .review-form-actions,
    .review-votes {
        gap: 10px;
    }
    .rating-box {
        margin-bottom: 18px;
    }
    .review-top {
        gap: 10px;
    }
    .review-stars {
        margin-top: 12px;
    }
    .review-bottom {
        justify-content: stretch;
    }
}
.reviews-shell {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-top: 24px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reviews-title {
    font-size: 22px;
    font-weight: 700;
}

.review-access-note {
    color: #b1b1b1;
    margin-top: 12px;
}

.review-form {
    margin-top: 20px;
    padding: 18px;
    border-radius: 10px;
    background: #222;
}

.review-form.is-hidden {
    display: none;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ddd;
}

.review-form-field-wide {
    grid-column: span 1;
}

.review-form-field select,
.review-form-field textarea {
    background: #121212;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f5f5f5;
    padding: 12px;
    resize: vertical;
}

.review-form-field textarea {
    min-height: 120px;
}

.review-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.review-cancel-btn,
.reviews-load-more,
.review-vote-btn {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.review-cancel-btn:hover,
.reviews-load-more:hover,
.review-vote-btn:hover {
    background: #2b2b2b;
}

.write-btn {
    background: #ff3c7f;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.write-btn:hover {
    background: #ff5c98;
}

.write-btn:disabled,
.review-cancel-btn:disabled,
.reviews-load-more:disabled,
.review-vote-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.reviews-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.rating-box {
    min-width: 120px;
    text-align: center;
}

.rating-number {
    font-size: 40px;
    font-weight: 700;
}

.rating-stars,
.review-stars {
    color: #f4c542;
}

.rating-stars {
    font-size: 20px;
}

.rating-text {
    color: #aaa;
}

.rating-bars {
    flex: 1;
}

.bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

.progress {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 999px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ff3c7f;
    border-radius: 999px;
}

.reviews-list {
    display: grid;
    gap: 15px;
}

.review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    background: #252525;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-name {
    font-weight: 700;
}

.review-date {
    color: #aaa;
    font-size: 12px;
}

.review-text {
    margin-top: 15px;
    line-height: 1.6;
    color: #ddd;
}

.review-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.review-votes {
    display: flex;
    gap: 10px;
}

.review-vote-btn.is-active {
    border-color: #ff3c7f;
    color: #ff8eb2;
}

.reviews-empty {
    background: #222;
    border-radius: 10px;
    color: #bdbdbd;
    padding: 18px;
}

.reviews-loading {
    text-align: center;
}

.show-all {
    text-align: center;
    margin-top: 20px;
}

.rate-btn {
    max-width: 18px;
    max-height: 20px;
    margin-left: 2.5px;
    cursor: pointer;
}
