.mends-list {
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
.mend-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
.vote-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
.vote-column button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
  }
  
.vote-column button.upvote:hover {
    color: green;
  }
  
.vote-column button.downvote:hover {
    color: red;
  }
  
.vote-count {
    font-size: 14px;
    margin: 4px 0;
  }
  
.mend-content {
    background-color: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    max-width: 600px;
    word-wrap: break-word;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
.add-mend-button-container {
    display: flex;
    justify-content: flex-end;
    margin: 10px 20px 20px 0;
    gap: 8px;
  }

.add-mend-button {
    background-color: #007bff;
    color: white;
    font-size: 28px;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }

.add-mend-button:hover {
    background-color: #0056b3;
  }

.add-mend-icon-button {
    background-color: #007bff;
    color: white;
    font-size: 28px;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.add-mend-icon-button:hover {
    background-color: #0056b3;
}

.add-mend-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
  
