/* fixed oversized messages block */
.messages-list__item {
  max-height: 60px;
  overflow: visible;
  margin-bottom: 0;
}

.contest-time-remaining {
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
}

.contest-active {
  color: #2e7d32;
  background-color: #e8f5e9;
}

.contest-soon {
  color: #f57c00;
  background-color: #fff3e0;
}

.contest-urgent {
  color: #d32f2f;
  background-color: #ffebee;
}

.contest-ended {
  color: #616161;
  background-color: #f5f5f5;
}

.messages__container {
  padding: 8px 12px;
  min-height: auto;
}

.messages__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.messages__wrapper {
  padding: 10px 0;
  margin: 0;
  min-height: auto;
}

.messages-list {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* fix broken layouts.css from dashboard module */
@media screen and (max-width: 767px) {
  .layouts-dashboards-3 .drow:first-child,
  .layouts-dashboards-1 .drow:first-child {
    flex: 0 1 auto;
    width: 100%;
  }
}


/* General styles */
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #212121;
  background-color: #fafafa;
  background-image: none;
}

.read-more-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0d77b5;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #0a5d8a;
}

/* contest winner trophy */
.contest-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contest-winner-badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffd700;
  color: #000;
  padding: 0.2em 0.5em;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trophy-icon {
  font-size: 1.2em;
  margin-right: 0.3em;
}

.winner-text {
  line-height: 1;
}

/* Layout */
.main-content .node-form,
.main-content .view-tracker,
.main-content .block-views,
.node--view-mode-full,
.user-profile, 
.poem-full {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Avatar and Profile Picture Styles
   ========================================================================== */

/* Base avatar wrapper - used for both initials and profile pictures */
.profile-picture-wrapper {
  --avatar-size: 36px;
  width: var(--avatar-size);
  height: var(--avatar-size);
  min-width: var(--avatar-size);
  min-height: var(--avatar-size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
  position: relative;
  background-color: transparent;
  vertical-align: middle;
}

/* Profile picture image and comment image */
.profile-picture,
.profile-picture-wrapper img, .comment__picture img {
  width: 100%;
  height: 100%;
  max-width: 60px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

/* Initials avatar - used when no profile picture is available in content areas */
.initials-avatar {
  --avatar-size: 36px;
  width: var(--avatar-size);
  height: var(--avatar-size);
  min-width: var(--avatar-size);
  min-height: var(--avatar-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d77b5;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Specific context overrides can be added here when needed */

/* Fix alignment in specific views */
.poem-full .author-info .profile-picture,
.node--type-poem.node--view-mode-full .author-info .profile-picture {
  margin: 0;
  vertical-align: middle;
}

/* Author info styles */
.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.author-details {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  line-height: 1.2;
}

.username {
  font-weight: 500;
  color: #0d77b5;
  font-size: 14px;
}

.username a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.username a:hover {
  color: #0a5d8a;
  text-decoration: underline;
}

.publication-date {
  font-size: 12px;
  color: #757575;
}

/* Profile Header */
.profile-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 24px;
  margin-bottom: 24px;
}

.profile-image {
  flex-shrink: 0;
  margin-right: 24px;
}

.profile-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0d77b5;
}

.profile-info {
  flex-grow: 1;
}

.profile-name {
  font-size: 28px;
  font-weight: 600;
  margin-block: 15px;
}

.member-info {
  font-size: 14px;
  color: #757575;
  margin-bottom: 16px;
}

.profile-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.role {
padding: 4px 7px;
margin: 0;
border-radius: 12px;
font-size: 11px;
  font-weight: 500;
text-transform: capitalize;
}

/* Role-specific colors following Material Design palette */

/* Administrative Hierarchy - Muted Red */
.profile-roles .role[data-role="administrative-council-member"],
.profile-roles .role[data-role="ac-chair"],
.profile-roles .role[data-role="director"],
.profile-roles .role[data-role="trustee"],
.profile-roles .role[data-role="cofounder"] {
  background-color: #B71C1C; /* Red 900 - deeper, more subdued */
  color: #fff;
}

/* Basic Membership Levels - Subtle Blues */
.profile-roles .role[data-role="authenticated-user"],
.profile-roles .role[data-role="member"] {
  background-color: #90A4AE; /* Blue Grey 300 - very subtle */
  color: #fff;
}

/* Premium - Vibrant Purple */
.profile-roles .role[data-role="premium"] {
  background-color: #6A1B9A; /* Purple 800 - prominent */
  color: #fff;
}

/* Community Support Roles - Medium Blues */
.profile-roles .role[data-role="advocate"],
.profile-roles .role[data-role="guide"] {
  background-color: #1976D2; /* Blue 700 - matches Neopoet blue */
  color: #fff;
}

/* Workshop Leaders - Teal Blues */
.profile-roles .role[data-role="workshop-leaders"],
.profile-roles .role[data-role="workshop-coordinator"] {
  background-color: #0288D1; /* Light Blue 700 - complementary to site */
  color: #fff;
}

/* Hide specific roles */
.profile-roles .role[data-role="anonymous-user"],
.profile-roles .role[data-role="securelogin"],
.profile-roles .role[data-role="newsletter"],
.profile-roles .role[data-role="chat"],
.profile-roles .role[data-role="memorialized"],
.profile-roles .role[data-role="potential-spammer"],
.profile-roles .role[data-role="new-member"],
.profile-roles .role[data-role="recent-new-member"],
.profile-roles .role[data-role="administrator"],
.profile-roles .role[data-role="content-editor"] {
  display: none;
}

/* Profile Stats */
.profile-stats {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.stat {
  text-align: center;
  margin-right: 24px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #0d77b5;
}

.stat-label {
  font-size: 14px;
  color: #757575;
}

/* Poem Teaser */
.poem-teaser {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.poem-teaser:hover,
.node-teaser:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Universal Teaser Styles */
.node-teaser {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.node-teaser-header {
  margin-bottom: 16px;
}

.node-teaser .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.node-teaser .author-details {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.node-teaser .username {
  font-weight: 500;
  color: #0d77b5;
  margin-bottom: 2px;
}

.node-teaser .username a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.node-teaser .username a:hover {
  color: #0a5d8a;
  text-decoration: underline;
}

.node-teaser .publication-date {
  font-size: 0.85em;
  color: #757575;
}

.node-teaser-title {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.node-teaser-title a {
  color: #212121;
  text-decoration: none;
  transition: color 0.2s ease;
}

.node-teaser-title a:hover {
  color: #0d77b5;
}

.node-teaser-content {
  margin-bottom: 16px;
  color: #424242;
  line-height: 1.6;
}

.node-teaser-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.node-teaser .interaction-section {
  display: flex;
  gap: 16px;
}

.node-teaser .read-more-link,
.node-teaser .comment-link {
  color: #0d77b5;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.2s ease;
}

.node-teaser .read-more-link:hover,
.node-teaser .comment-link:hover {
  color: #0a5d8a;
  text-decoration: underline;
}

/* Hide the duplicate read more link in the content area */
.node-teaser-content .links {
  display: none;
}

/* Align profile picture and username */
.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-picture-wrapper,
.initials-avatar {
  margin-right: 10px;
}

.user-avatar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:  #0d77b5;
  color: white;
  font-size: 40px;
  font-weight: bold;
  width: 100px;
  height: 100px;
  border:2px solid #0a5b8a;
  border-radius: 50%;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.username {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.publication-date {
  font-size: 0.85em;
  color: #777;
  margin-top: 2px;
}

/* Title improvements */
.poem-title {
  font-size: 1.7em;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  color: #0d77b5;
}

.poem-title a {
  text-decoration: none;
  color: inherit;
}

.poem-title a:hover {
  text-decoration: underline;
  color: #005b99;
}

/* Styling specific to front page - adds slight contrast for community news and stream blocks */
.main-content .block-views-blocklede-block-1,
.main-content .block-views-blockstream-block-2 {
  background-color: #fefcff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid #f0f0f0;
}

/* Poem content styling */
.poem-excerpt {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
  padding-left: 0.5em;
}

.poem-excerpt p {
  margin-bottom: 10px;
}

/* Footer interaction icons */
.poem-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  margin-top: 20px;
}

.interaction-section {
  display: flex;
  align-items: center;
}

.read-more-link {
  font-size: 16px;
  color: #0d77b5;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #0a5d8a;
  text-decoration: underline;
}

.comment-link {
  font-size: 16px;
  color: #424242;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.comment-link:hover {
  color: #0d77b5;
}

.comment-link::before {
  content: '💬';
  margin-right: 5px;
  font-size: 20px;
}
/* Comment section styling - Simplified */
/* Reset comment layout and remove left padding */
.comment {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  padding-inline-start: 0 !important; /* Remove the left padding */
}

/* Fix avatar positioning */
.comment__picture-wrapper {
  float: left;
  margin-right: 0.75rem;
}

.comment__picture {
  width: var(--sp3) !important;
  height: var(--sp3) !important;
}

/* Improved comment header layout */
.comment__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: var(--sp3); /* Match avatar height */
  padding-top: 0;
}

/* Username style at top */
.comment__meta .comment__author {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.25rem;
}

/* Timestamp style at bottom */
.comment__meta .comment__time {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1;
}

/* Style comment meta info to appear inline with avatar */
.comment__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.25rem; /* Slight adjustment to align with avatar */
}

/* Clear any floats and override Olivero for mobile */
@media (max-width: 43.75rem) {
  .comment__picture {
    position: relative !important;
    inset-inline-start: auto !important;
    width: var(--sp2) !important;
    height: var(--sp2) !important;
  }
}

.comment__picture .user-avatar-label {
  font-size: 25px;
  width: inherit;
  height: inherit;
}

/* Comment section layout improvements */
#comments,
.comment-wrapper {
  margin-top: 2rem;
  padding-left: 0; /* Ensure comments align with page content */
}

#comments h3,
.comment-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Fix comment structure based on actual HTML */
.comment header {
  margin-bottom: 0.75rem;
}

.comment__meta {
  display: flex;
  flex-direction: column;
}

.comment__content {
  flex: 1;
  margin-bottom: 0.75rem;
}

/* Improve spacing between comments */
.comment {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Improve spacing within comment content */
.comment__content {
  margin-bottom: 0.75rem;
}

.comment__content .field--name-comment-body {
  margin-bottom: 0.5rem;
}

/* Style links that appear below comments */
.comment__links-wrapper {
  margin-top: 0.5rem;
}

.comment footer ul.links,
.comment ul.links {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  gap: 1rem;
  list-style: none;
}

.comment footer ul.links li,
.comment ul.links li {
  margin: 0;
  padding: 0;
}

/* Style Edit/Reply links */
.comment footer a,
.comment ul.links a,
.comment a.edit,
.comment a.reply,
.comment a.delete {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: #f3f4f6;
}

.comment footer a:hover,
.comment ul.links a:hover,
.comment a.edit:hover,
.comment a.reply:hover,
.comment a.delete:hover {
  color: #0d77b5;
  background-color: #e5e7eb;
  text-decoration: none;
}

/* Improve indentation for comment replies */
.indented {
  margin-left: 2rem;
  border-left: 2.5px solid #d9dbdf;
  padding-left: 1rem;
}

/* Mobile responsiveness for comments */
@media (max-width: 640px) {
  .comment {
    flex-direction: column;
  }
  
  .indented {
    margin-left: 1rem;
  }
}

/* Profile buttons container for stacked display */
.profile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Username link styles */
.username-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.username-link:hover {
  color: #0d77b5;
  text-decoration: none;
}

/* Message button styles */

.message-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #5bc0de;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-button:hover {
  background-color: #46b8da;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.message-button:active {
  background-color: #31b0d5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Follow button styles */
.flag-follow a {
  display: inline-block;
  padding: 8px 16px 8px 36px; /* Added left padding for icon */
  background-color: #0d77b5;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative; /* For icon positioning */
}

.flag-follow a:hover,
.flag-follow a:focus {
  background-color: #2494db;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flag-follow a:active {
  background-color: #0a5b8a;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag-follow a.is-active {
  background-color: #0a5b8a;
}

/* Follow button icon */
.flag-follow a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flag-follow a:not(.is-active)::before {
  background-image: url("../images/follow-icon.svg");
}

.flag-follow a.is-active::before {
  background-image: url("../images/unfollow-icon.svg");
}

/* Divider styling for poem sections */
.poem-teaser hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 16px 0;
}

/* Responsive design */

@media (max-width: 1040px) {
  .profile-header {
    flex-direction: column;
  }

  .profile-image {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .profile-header,
  .profile-stats {
    flex-direction: column;
    align-items: center;
  }

  .profile-info,
  .follow-button-container {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }

  .stat {
    margin-bottom: 16px;
  }

  .profile-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 4px;
    margin-bottom: 8px;
  }

  .poem-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .username {
    font-size: 14px;
  }

  .poem-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .interaction-section {
    margin-bottom: 15px;
  }

  .follow-button-container {
    width: 100%;
  }

  .flag-follow a {
    width: 100%;
    text-align: center;
  }
}

/* Table responsiveness */
@media screen and (max-width: 600px) {
  table {
    width: 100%;
    border-collapse: collapse;
  }

  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
  }

  td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-label);
    font-weight: bold;
  }
}

.material-icons {
  font-size: 24px;
  vertical-align: middle;
}

.notification-bell .material-icons {
  color: #757575;
}

.notification-bell.is-active .material-icons {
  color: #2196F3;
}

/* material design style tabs */
/* Targeted Material Design styling for Drupal Olivero tabs */
.tabs--primary {
  display: flex;
  background-color: white;
  margin-bottom: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs__tab {
  flex: 1;
  text-align: center;
  margin: 0;
  position: relative;
}

.tabs__link {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tabs__link.is-active {
  color: #0d77b5;
}

.tabs__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0d77b5;
}

.tabs__link:hover {
  background-color: rgba(13, 119, 181, 0.05);
  color: #0d77b5;
}

/* Ripple effect */
.tabs__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(13, 119, 181, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.tabs__link:active::before {
  width: 200px;
  height: 200px;
}

/* Hide the mobile trigger button on desktop */
.tabs__trigger {
  display: none;
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
  .tabs--primary {
    flex-direction: column;
    background-color: transparent;
    box-shadow: none;
  }

  .tabs__tab {
    margin-bottom: 8px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .tabs__link.is-active::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
  }
}

/* Responsive table fix for all views tables */
@media screen and (max-width: 768px) {
  /* Hide the "show all columns" toggle since it doesn't actually work right now */
  .tableresponsive-toggle {
    display: none;
  }
  /* Target all views tables */
  table.views-table {
    width: 100% !important;
    display: block;
  }

  table.views-table thead {
    display: none;
  }

  table.views-table tbody {
    display: block;
  }

  table.views-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  table.views-table td {
    display: block;
    text-align: left;
    border: none;
    position: relative;
    padding: 8px 8px 8px 110px;
    min-height: 30px;
  }

  /* Create column labels using ::before */
  table.views-table td.views-field-created::before {
    content: "Created: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  table.views-table td.views-field-last-updated::before,
  table.views-table td.views-field-changed::before {
    content: "Updated: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  table.views-table td.views-field-type::before {
    content: "Type: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  /* Let title take full width without label */
  table.views-table td.views-field-title {
    padding-left: 8px;
    font-size: 16px;
    font-weight: bold;
  }

  /* Generic handlers for common field types */
  table.views-table td.views-field-name::before {
    content: "Name: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  table.views-table td.views-field-field-workshop::before,
  table.views-table td.views-field-field-workshopselect::before {
    content: "Workshop: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  table.views-table td.views-field-field-contest::before {
    content: "Contest: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }

  table.views-table td.views-field-field-status::before {
    content: "Status: ";
    font-weight: bold;
    position: absolute;
    left: 8px;
  }
}
