.content label {
  font-weight:bold;
  display:block;
  margin-bottom:6px;
}

.content input,
.content select {
  width:100%;
  padding:12px;
  font-size:15px;
  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 {
  background:#fff;
  border:1px solid #ddd;
  padding:10px;
  margin-bottom:8px;
  border-radius:6px;
  cursor:pointer;
  font-size:16px;
  word-break:break-word;
  font-family: "Segoe UI Symbol","Arial Unicode MS",Arial,sans-serif;
}

.stat-card:hover { background:#eef6ff; }

.note {
  margin-top:10px;
  font-size:13px;
  color:#666;
}

@media (max-width:768px){
  .btns{flex-direction:column;}
}