
/* Base container */
.project-card {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  max-width: 800px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}


/* Top row: team code and location */
.project-card .top-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95em;
  color: #666;
  margin-bottom: 8px;
}


/* Headings */
.project-card h1 {
  font-size: 1.3em;
  color: #333;
}

/* Headings */
.project-card h2 {
  font-size: 1.1em;
  margin-bottom: 8px;
  text-align: center;
  color: #333;
}

/* Labels */
.project-card .label {
  font-weight: 600;
  color: #555;
  display: inline-block;
  width: 150px;
}

/* Content rows */
.project-card .row {
  margin-bottom: 8px;
}

/* Description block */
.project-card .description {
  margin-top: 12px;
  line-height: 1.5;
  color: #444;
}

/* Team members list */
.project-card .team {
  margin-top: 8px;
  padding-left: 20px;
  list-style-type: disc;
}

/* Voting ID highlight */
.project-card .voting-id {
    background-color: #f9e0e0;
    border-left: 4px solid #f54e4e;
    padding: 8px 12px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-weight: bold;
    color: #8f1717;
}
