.content label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.content input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* BUTTONS (your style) */
.btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.app {
  padding: 12px 20px;
  border: none;
  background: linear-gradient(135deg, #0a3d62, #07517d);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

/* RESULT */
.result-box {
  margin-top: 20px;
  height: 260px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fafafa;
}

.stat-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  word-break: break-word;
}

.copy-btn {
  background: #0a3d62;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.note {
  font-size: 13px;
  color: #666;
}

@media (max-width:768px){
  .btns { flex-direction: column; }
}