/* jubu-ads v1 */
* { box-sizing: border-box; margin: 0; }
body { font-family: -apple-system, "Segoe UI", Tahoma, sans-serif; background: #f4f5f0; color: #22301f; }
.topbar { display: flex; justify-content: space-between; align-items: center;
  background: #1d3a24; color: #fff; padding: 12px 20px; }
.brand { font-weight: 700; }
.brand .sub { font-weight: 400; font-size: 13px; opacity: .75; margin-left: 8px; }
.wrap { max-width: 1000px; margin: 24px auto; padding: 0 16px; }
.card { background: #fff; border-radius: 10px; padding: 18px 20px; margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
h1 { font-size: 20px; margin-bottom: 12px; }
h2 { font-size: 16px; margin-bottom: 10px; color: #1d3a24; }
.kv { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed #e6e8e0; font-size: 14px; }
.kv span { color: #66705f; }
.ok { color: #1a7f37; } .bad { color: #c0392b; }
.muted { color: #888; font-size: 14px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #eee; }
th { color: #66705f; font-weight: 600; background: #fafbf7; }
.tag { font-size: 12px; padding: 2px 8px; border-radius: 10px; background: #eee; }
.tag.ok { background: #d8f2df; color: #1a7f37; }
.flash { background: #fff4e5; border: 1px solid #f0c580; border-radius: 8px;
  padding: 10px 14px; margin-bottom: 14px; font-size: 14px; }
.login-card { max-width: 360px; margin: 60px auto; }
label { display: block; font-size: 14px; margin-bottom: 12px; color: #444; }
input { width: 100%; padding: 9px 10px; margin-top: 4px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; }
.btn { width: 100%; background: #1d3a24; color: #fff; border: 0; padding: 10px;
  border-radius: 6px; font-size: 15px; cursor: pointer; }
.btn:hover { background: #2a5233; }
.btn-plain { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px; padding: 5px 12px; cursor: pointer; font-size: 13px; }
