.opportunity-card {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.opportunity-title {
  font-size: 20px;
  font-weight: 600;
  color: #003D5B;
  margin: 0;
}

.opportunity-id {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  background: #003D5B;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.opportunity-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #1A1A1A;
}

.meta-item {
  display: flex;
  align-items: center;
}

.meta-label {
  font-weight: 600;
  margin-right: 6px;
}

.opportunity-description {
  color: #333333;
  line-height: 1.6;
  margin: 16px 0;
  min-height: 40px;
}

.opportunity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  background: #FDB714;
  color: #1A1A1A;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.opportunity-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-open { background: #E8F5E9; color: #2E7D32; }
.status-closed { background: #FFEBEE; color: #C62828; }
.status-online { background: #FFF9E6; color: #F57C00; }
