/* Container card */
.swpc-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  max-width: 400px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

/* Header + pencil icon */
.swpc-header {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.swpc-header .swpc-edit {
  display: inline-block;
  margin-left: 6px;
  color: #888888;
  font-size: 14px;
  cursor: pointer;
}

/* Input + button side by side */
.swpc-input-group {
  display: flex;
}
.swpc-input-group input {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.swpc-input-group input:focus {
  border-color: #ff5c39;
}

/* CHECK button */
.swpc-input-group button {
  background: #004822;
  color: #ffffff;
  border: none;
  padding: 0 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.swpc-input-group button:hover {
  background: black;
	color: #ffffff;
}

/* Result text */
.swpc-result {
  margin-top: 12px;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}
.swpc-result span {
  font-weight: 600;
}
/* Icon‑list for results */
.swpc-info-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.swpc-info-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
    font-weight: 400;  
}
.swpc-info-list li .swpc-icon {
  display: inline-block;
  /* margin‑right gives the gap to the text */
  margin-right: 8px;
  font-size: 1.2em;
  line-height: 1;
  color: #ff5c39;
  .swpc-info-list li .swpc-icon {
  font-weight: 600;
}
.swpc-info-list li strong {
  font-weight: 600;
}