<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Voting Section Styles */
.voting-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0; /* Margin will be handled by parent .dictionary-word-container-wrapper */
  text-align: center;
  border: 1px solid #e9ecef;
}

.voting-question h4 {
  color: #495057;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.voting-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vote-btn {
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 50px;
  color: #6c757d;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  min-width: 80px;
  justify-content: center;
}

.vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vote-btn.vote-up {
  border-color: #28a745;
  color: #28a745;
}

.vote-btn.vote-up:hover,
.vote-btn.vote-up.active {
  background: #28a745;
  color: white;
}

.vote-btn.vote-down {
  border-color: #dc3545;
  color: #dc3545;
}

.vote-btn.vote-down:hover,
.vote-btn.vote-down.active {
  background: #dc3545;
  color: white;
}

.vote-btn i {
  font-size: 18px;
}

.vote-count {
  font-weight: 700;
  min-width: 20px;
}

.voting-feedback {
  margin-top: 12px;
}

.feedback-message {
  color: #28a745;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 8px 16px;
  background: #d4edda;
  border-radius: 6px;
  display: inline-block;
}

/* Comments Section Styles */
.comments-section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 24px 0; /* Margin will be handled by parent .dictionary-word-container-wrapper */
  padding: 24px;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.comments-header h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.comment-count {
  background: #e9ecef;
  border-radius: 20px;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
}

.comments-list {
  margin-bottom: 32px;
}

.comment-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.comment-item:hover {
  background: #f1f3f4;
  border-color: #dee2e6;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.comment-author {
  font-weight: 600;
  color: #1a1a1a;
}

.comment-author a {
  color: #2196f3;
  text-decoration: none;
}

.comment-author a:hover {
  text-decoration: underline;
}

.comment-date {
  color: #6c757d;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-text {
  color: #495057;
  line-height: 1.6;
  font-size: 16px;
}

.no-comments {
  text-align: center;
  color: #6c757d;
  padding: 40px 20px;
}

.no-comments i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  color: #dee2e6;
}

.no-comments p {
  font-size: 18px;
  margin: 0;
}

/* Comment Form Styles */
.comment-form-container {
  border-top: 2px solid #f0f0f0;
  padding-top: 24px;
}

.comment-form-container h4 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.submit-comment-btn {
  background: #2196f3;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.submit-comment-btn:hover {
  background: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.submit-comment-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Author Section Styles */
.author-section {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border-radius: 12px;
  margin: 24px 0; /* Margin will be handled by parent .dictionary-word-container-wrapper */
  padding: 24px;
}

.author-header h3 {
  color: #00695c;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  position: relative;
  flex-shrink: 0;
}

.author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 3px solid #ffffff;
}

.author-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00796b;
  color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  border: 3px solid #ffffff;
}

.author-info {
  flex: 1;
}

.author-name {
  color: #00695c;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.author-bio {
  color: #00796b;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.author-social {
  display: flex;
  gap: 12px;
}

.social-link {
  background: #ffffff;
  border-radius: 50%;
  color: #00796b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00796b;
  color: white;
  transform: translateY(-2px);
}

/* Dark Mode Styles */
.dark-mode .voting-section {
  background: #2d2d2d;
  border-color: #4d4d4d;
}

.dark-mode .voting-question h4 {
  color: #f4f4f4;
}

.dark-mode .vote-btn {
  background: #3d3d3d;
  border-color: #4d4d4d;
  color: #f4f4f4;
}

.dark-mode .comments-section {
  background: #2d2d2d;
}

.dark-mode .comments-header {
  border-bottom-color: #4d4d4d;
}

.dark-mode .comments-header h3 {
  color: #f4f4f4;
}

.dark-mode .comment-count {
  background: #4d4d4d;
  color: #f4f4f4;
}

.dark-mode .comment-item {
  background: #3d3d3d;
  border-color: #4d4d4d;
}

.dark-mode .comment-item:hover {
  background: #4a4a4a;
}

.dark-mode .comment-author {
  color: #f4f4f4;
}

.dark-mode .comment-text {
  color: #e0e0e0;
}

.dark-mode .comment-form-container {
  border-top-color: #4d4d4d;
}

.dark-mode .comment-form-container h4 {
  color: #f4f4f4;
}

.dark-mode .form-group label {
  color: #e0e0e0;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background: #3d3d3d;
  border-color: #4d4d4d;
  color: #f4f4f4;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
  border-color: #4d9fff;
  box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.1);
}

.dark-mode .author-section {
  background: linear-gradient(135deg, #1a4037, #26a69a);
}

.dark-mode .author-header h3 {
  color: #b2dfdb;
}

.dark-mode .author-name {
  color: #e0f2f1;
}

.dark-mode .author-bio {
  color: #b2dfdb;
}

.dark-mode .social-link {
  background: #4d4d4d;
  color: #b2dfdb;
}

.dark-mode .social-link:hover {
  background: #26a69a;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .voting-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vote-btn {
    width: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .comment-item {
    flex-direction: column;
    gap: 12px;
  }

  .comment-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .voting-section,
  .comments-section,
  .author-section {
    padding: 16px;
    margin: 16px 0;
    width: auto; /* Allow content to dictate width, with parent padding */
  }

  .vote-btn {
    width: 100%;
    max-width: 200px;
  }

  .author-avatar img,
  .author-initials {
    width: 60px;
    height: 60px;
  }

  .author-initials {
    font-size: 18px;
  }
}

</pre></body></html>