.comic-container {
    width: 90vw;
    margin: 5vw;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.comic-image {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*COMMENTS AND REPLIES*/

/* Import 'Raleway' font (credit: Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Raleway', sans-serif;
    text-transform: none;
}

.forum {
    max-width: 90vw;
    margin: 5vw;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
}

#CmtsHeader {
    padding-left: 1rem;
    text-align: center; /* Center the "Comments" header */
}

#posts {
    margin-top: 20px;
    clear: both;
}

.post {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1.7rem;
    word-wrap: break-word;
}

.post-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

textarea#comment {
    height: 20px;
    max-width: 100%;
    resize: none;
    margin-bottom: 10px;
}

#post-button,
.reply-button,
.post-reply-button {
    padding: 5px 10px;
    background-color: #f4a12b;
    color: white;
    border: none;
    cursor: pointer;
}

#post-button:hover,
.reply-button:hover,
.post-reply-button:hover {
    background-color: #a86f20;
}

.reply {
    margin-bottom: 10px;
    padding-left: 3rem;
    word-wrap: break-word;
    text-transform: none;
}

.reply hr {
    border: 1px solid #ddd;
    margin: 10px 0;
}

.reply-text-container {
    width: 100%;
}

.reply-text {
    width: 100%;
    min-width: 300px;
    max-width: 90vh; /* Adjust the max-width as needed */
}

.comment-image {
    max-width: 100%;
    height: auto;
}

.custom-file-upload {
    padding: 6px 12px;
    cursor: pointer;
    background-color: #f4a12b;
    color: white;
    border: none;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

#image-indicator {
    font-size: 16px;
}

.comment-section {
    display: flex;
    align-items: center;
}

textarea {
    flex: 1;
    font-size: 1.7rem;
    border: 1px solid;
    border-radius: .5rem;
}