
/* FINAL POLISH */
:root{
  --radius:12px;
  --border:#e5e7eb;
  --shadow:0 10px 28px rgba(0,0,0,.05);
}

/* buttons */
button, .btn{
  border-radius:999px !important;
  padding:8px 14px !important;
  font-size:14px;
  border:1px solid var(--border);
  background:#fff;
}
button:hover, .btn:hover{
  background:#f3f4f6;
}

/* inputs */
input, textarea, select{
  border-radius:10px !important;
  border:1px solid var(--border);
  padding:8px 10px;
}

/* cards unify */
.card, .widget, .box{
  border-radius:var(--radius) !important;
  box-shadow:var(--shadow) !important;
}

/* footer clean */
footer{
  background:#fff !important;
  border-top:1px solid var(--border);
  font-size:13px;
  color:#6b7280;
}
footer a{
  color:#374151;
}

/* spacing balance */
.section, .block{
  margin-bottom:16px;
}

/* hover smooth */
*{
  transition:all .2s ease;
}
