body {
    background-color: #000000;
    /* Dark gray background */
    color: #ffffff;
    /* White text color */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#comments {
    margin-bottom: 20px;
}

.comment {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    margin-bottom: 20px;
}

.comment p {
    margin: 0;
}

.comment-content {
    flex-grow: 1;
}

textarea#editor {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

button {
    background-color: #00ccff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #cc05c2;
}

#commentForm {
    color: black;
}

.ql-editor,
.ql-toolbar {
    background-color: #ffffff;
    /* White background color */
}

img:not(#logo) {
    max-height: 128px;
    width: auto;
}

#logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pfp {
    vertical-align: middle;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: rgba(0, 0, 0);
    border: 1px solid #888;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-content {
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    #logo {
        max-width: 100%;
    }
}
.character-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
}

.character-link:hover {
    color: pink; /* Change color to pink when hovered */
}