/* css/style.css - simple modern styling */
.wc-card {
  max-width: 820px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 18px;
  background: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 12px 0;
}

.wc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wc-header-icon {
  font-size: 20px;
  color: #2b6cb0;
}

.wc-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.wc-textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
  font-size: 15px;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 14px;
  box-sizing: border-box;
  line-height: 1.5;
}

.wc-textarea:focus {
  outline: none;
  border-color: #9cc0ff;
  box-shadow: 0 4px 12px rgba(59,130,246,0.08);
}

.wc-stats {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.wc-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  min-width: 150px;
  box-sizing: border-box;
}

.wc-stat-icon {
  font-size: 18px;
  color: #1e293b;
}

.wc-stat-values {
  display: flex;
  flex-direction: column;
}

.wc-stat strong {
  font-size: 16px;
  display: block;
  color: #0f172a;
}

.wc-stat span {
  font-size: 12px;
  color: #475569;
}

.wc-note {
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
}
