:root{
  --fw-green: #39ff14;      /* Kawasaki-style green highlight */
  --fw-green-dark: #25cc0b; /* darker hover */
  --fw-text: #3d3d3d;       /* grey text */
  --fw-muted: #6b6b6b;      /* lighter grey */
  --fw-bg: #f6f7f8;         /* light background */
  --fw-card: #ffffff;       /* card background */
  --fw-border: #e6e7ea;     /* soft border */
  --fw-shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  background: var(--fw-bg);
  color: var(--fw-text);
}

a{
  color: inherit;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

.topbar{
  background: #111;
  color: #fff;
  border-bottom: 4px solid var(--fw-green);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand{
  font-weight: 800;
  letter-spacing: .2px;
}

.nav a{
  margin-left: 14px;
  opacity: .95;
}

.nav a:hover{
  opacity: 1;
  text-decoration: none;
  border-bottom: 2px solid var(--fw-green);
  padding-bottom: 2px;
}

.card{
  background: var(--fw-card);
  border: 1px solid var(--fw-border);
  border-radius: 14px;
  box-shadow: var(--fw-shadow);
  padding: 18px;
}

.h1{
  font-size: 22px;
  margin: 0 0 6px;
}

.p-muted{
  color: var(--fw-muted);
  margin: 0 0 14px;
}

.row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.col{
  flex:1;
  min-width: 240px;
}

label{
  display:block;
  font-weight:700;
  margin: 10px 0 6px;
}

input, select, textarea{
  width:100%;
  padding: 10px;
  border:1px solid var(--fw-border);
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
}

textarea{
  min-height: 90px;
  resize: vertical;
}

.btn{
  display:inline-block;
  border:0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  cursor:pointer;
  text-decoration:none;
  transition: .15s ease;
}

.btn-primary{
  background: var(--fw-green);
  color: #111;
}

.btn-primary:hover{
  background: var(--fw-green-dark);
}

.btn-secondary{
  background: #111;
  color:#fff;
  border: 1px solid #222;
}

.btn-secondary:hover{
  opacity: .92;
}

.btn-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.table{
  width:100%;
  border-collapse: collapse;
  margin-top: 10px;
  overflow:hidden;
  border-radius: 12px;
}

.table th, .table td{
  border-bottom: 1px solid var(--fw-border);
  padding: 10px;
  text-align:left;
  font-size: 14px;
}

.table th{
  background: #111;
  color:#fff;
  font-weight: 800;
}

.badge{
  display:inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--fw-border);
}

.badge-green{
  background: rgba(57,255,20,.18);
  border-color: rgba(57,255,20,.35);
}

.badge-grey{
  background: rgba(0,0,0,.06);
}

hr{
  border:0;
  border-top: 1px solid var(--fw-border);
  margin: 14px 0;
}
