body {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    background-color: #fff;
    margin: 0;
    padding: 2rem;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.voting-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    padding: 0.5rem 1rem;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    min-width: 140px;
    transition: transform 0.2s, background-color 0.2s;
    font-family: sans-serif;
}

.vote-btn:hover {
    background-color: #e0e0e0;
}

.vote-btn:active {
    transform: scale(0.95);
}

.vote-btn.active {
    background-color: #d0e8f2;
    border-color: #a0c8d2;
}

.comments-input-section {
    margin-bottom: 2rem;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 1rem;
    font-family: monospace;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    margin-bottom: 1rem;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    color: white;
    background-color: #555;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background-color: #444;
}

.comments-display-section {
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.comment {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-family: sans-serif;
    word-break: break-all;
}
