body {
    font-family: Arial, sans-serif;
    margin: 0;

    background-color: #f4f4f4;
}

.comic-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.comic-left {
    flex: 1 1 300px;
    padding-right: 20px;
}

.comic-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.comic-title {
    font-size: 24px;
    margin: 20px 0 10px;
}

.comic-right {
    flex: 1 1 300px;
}

.chapter-list {
    list-style-type: none;
    padding: 0;
}

.chapter-list li {
    margin-bottom: 10px;
}

.chapter-list li a {
    display: block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

.chapter-list li a:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .comic-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
}