.ss-social-match {
  width: 640px;
  min-height: 550px;
  margin: 0 auto 18px;
  border: 1px solid #8cb7cf;
  background: #f6fbff;
  color: #1e3442;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  box-shadow: 0 2px 8px rgba(22, 55, 75, 0.16);
}

.ss-social-match-shell {
  min-height: 550px;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(#ffffff, #eef8ff);
}

.ss-social-match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid #bfd8e7;
}

.ss-social-match-title {
  margin: 0;
  color: #0a5f8a;
  font-size: 23px;
  line-height: 1.2;
}

.ss-social-match-stats {
  display: flex;
  gap: 7px;
  white-space: nowrap;
}

.ss-social-match-pill {
  padding: 5px 8px;
  border: 1px solid #b6d5e8;
  border-radius: 4px;
  background: #e9f5fd;
  color: #21485e;
  font-size: 13px;
  font-weight: bold;
}

.ss-social-match-prompt {
  margin: 14px 0 12px;
  padding: 10px 12px;
  border: 1px solid #c7dde9;
  border-radius: 4px;
  background: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.ss-social-match-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ss-social-match-column {
  min-width: 0;
}

.ss-social-match-column h3 {
  margin: 0 0 8px;
  color: #225269;
  font-size: 16px;
}

.ss-social-match-list {
  display: grid;
  gap: 7px;
}

.ss-social-match-card {
  min-height: 39px;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #87aec5;
  border-radius: 4px;
  background: #ffffff;
  color: #084e75;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
}

.ss-social-match-card:hover {
  border-color: #0a73a8;
  background: #f2fbff;
}

.ss-social-match-card.is-selected {
  border-color: #0a73a8;
  background: #dff2ff;
  box-shadow: inset 0 0 0 1px #0a73a8;
}

.ss-social-match-card.is-wrong {
  border-color: #c74434;
  background: #fff0ee;
  color: #8d271b;
}

.ss-social-match-card.is-matched {
  border-color: #78b462;
  background: #e8f8e4;
  color: #2f681e;
  cursor: default;
}

.ss-social-match-feedback {
  min-height: 39px;
  margin-top: 12px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #e0cf86;
  border-radius: 4px;
  background: #fffced;
  color: #5c4d12;
  font-size: 15px;
  line-height: 1.3;
}

.ss-social-match-feedback.is-good {
  border-color: #92c97b;
  background: #effbea;
  color: #276514;
}

.ss-social-match-feedback.is-bad {
  border-color: #dfa099;
  background: #fff0ee;
  color: #8d271b;
}

.ss-social-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ss-social-match-button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #075f8d;
  border-radius: 4px;
  background: #0b74aa;
  color: #ffffff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.ss-social-match-button.secondary {
  border-color: #90b8cd;
  background: #ffffff;
  color: #0a5f8a;
}

.ss-social-match-summary {
  padding: 14px;
  border: 1px solid #c7dde9;
  border-radius: 4px;
  background: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .ss-social-match {
    width: 100%;
  }

  .ss-social-match-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .ss-social-match-board {
    grid-template-columns: 1fr;
  }
}
