/* Question-specific styles - Common styles moved to new_ui.css */

/* === Question Card === */



.question-card {
  width: 480px;
  height: auto;
  background-color: #1E1E20;
  border: 1px solid #343438;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  text-align: center; 
  
}

.question-header {
  display: flex;
  height: 50px;
  padding-bottom: 10px;
  align-items: center;
  gap: 12px;
}

.question-header .question-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.question-header span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.question-tags {
  display: flex;
  padding-top: 10px;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.question-type-badge,
.distribution-type-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 10px;
  height: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* Question type badge */
.question-type-badge.forecast {
  background-color: #151A2E;
  border: 1.5px solid #1C407E;
  color: #70B5EC;
}

.question-type-badge.training {
  background-color: #1A2535;
  border: 1.5px solid #3B4D6D;
  color: #A8D8E6;
}

/* Distribution type badge */
.distribution-type-badge.discrete {
  background-color: #0C1F19;
  border: 1.5px solid #084933;
  color: #84FFC0;
}

.distribution-type-badge.continuous {
  background-color: #0B3A29;
  border: 1.5px solid #2D6B57;
  color: #A8E4D0;
}

.question-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9A9A9A;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.question-footer .comments,
.question-footer .close-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.question-footer .material-symbols-outlined {
   font-size: 12px;
} 






