/* topic.css */
@import url('/common.css');
#reply-list,
#new-reply,
#topic-content {
    background-color: #fff;
    padding: 1.5em;
    margin-bottom: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#reply-list h2,
#new-reply h2,
#topic-content h2 {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

#new-reply form {
    display: flex;
    flex-direction: column;
}

#new-reply label {
    margin-bottom: 0.5em;
    color: #555;
    font-weight: bold;
}

#new-reply textarea {
    padding: 0.75em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

#new-reply button {
    background-color: #3498db;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

#new-reply button:hover {
    background-color: #2980b9;
}
