/* ═══════════════════════════════════════════
   NR Smart Menu — Biller Panel Styles
   ═══════════════════════════════════════════ */

.nrsm-biller-wrap {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #161616;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.nrsm-biller-wrap * { box-sizing: border-box; }

/* HEADER */
.nrsm-biller-header {
  background: #111;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
}
.nrsm-biller-logo { font-size: 16px; font-weight: 900; }
.nrsm-biller-logo span { color: #a8c060; }
.nrsm-biller-title { font-size: 12px; font-weight: 800; color: #a8c060; letter-spacing: .1em; text-transform: uppercase; }
.nrsm-biller-user { font-size: 13px; color: #666; }

/* TABS */
.nrsm-biller-tabs {
  display: flex;
  background: #1e1e1e;
  border-bottom: 1px solid #2a2a2a;
}
.nrsm-btab {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  color: #666;
  border: none;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.nrsm-btab.active {
  color: #a8c060;
  border-bottom-color: #a8c060;
  background: rgba(168,192,96,.06);
}

/* TAB CONTENT */
.nrsm-btab-content { display: none; padding: 20px; }
.nrsm-btab-content.active { display: block; }

.nrsm-biller-hint {
  background: rgba(168,192,96,.08);
  border: 1px solid rgba(168,192,96,.2);
  color: #a8c060;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* CATEGORY BLOCK */
.nrsm-bcat-block { margin-bottom: 24px; }
.nrsm-bcat-title {
  font-size: 13px;
  font-weight: 900;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a2a2a;
}
.nrsm-bcat-items { display: flex; flex-direction: column; gap: 10px; }

/* ITEM ROW */
.nrsm-bitem {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s;
}
.nrsm-bitem:hover { border-color: rgba(168,192,96,.3); }

.nrsm-bitem-img {
  width: 58px; height: 58px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #222;
}
.nrsm-bitem-img img { width: 100%; height: 100%; object-fit: cover; }
.nrsm-bitem-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

.nrsm-bitem-info { flex: 1; min-width: 0; }
.nrsm-bitem-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.nrsm-bitem-prices { font-size: 12px; color: #666; display: flex; gap: 12px; }
.nrsm-bitem-time { font-size: 11px; color: #a8c060; margin-top: 3px; }

.nrsm-bitem-toggle { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.nrsm-bstatus {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nrsm-bstatus.avail   { color: #5aa850; }
.nrsm-bstatus.unavail { color: #cc4444; }

/* BILLER TOGGLE */
.nrsm-biller-toggle { position: relative; display: inline-block; width: 52px; height: 28px; cursor: pointer; }
.nrsm-biller-toggle input { opacity: 0; width: 0; height: 0; }
.nrsm-bslider {
  position: absolute; inset: 0;
  background: #333;
  border-radius: 28px;
  transition: .3s;
}
.nrsm-bslider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: .3s;
}
.nrsm-biller-toggle input:checked + .nrsm-bslider { background: #a8c060; }
.nrsm-biller-toggle input:checked + .nrsm-bslider::before { transform: translateX(24px); }

/* PRICE REQUEST FORM */
.nrsm-price-req-form {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
}
.nrsm-price-req-form h3 { font-size: 15px; font-weight: 900; margin-bottom: 16px; color: #a8c060; }
.nrsm-price-req-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
}
.nrsm-price-req-form label select,
.nrsm-price-req-form label input,
.nrsm-price-req-form label textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 10px 12px;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
}
.nrsm-price-req-form label textarea { resize: vertical; min-height: 80px; }
.nrsm-pr-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nrsm-pr-current {
  background: rgba(168,192,96,.08);
  border: 1px solid rgba(168,192,96,.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.nrsm-pr-cur-label { font-size: 10px; font-weight: 800; text-transform: uppercase; color: #a8c060; letter-spacing: .08em; margin-bottom: 4px; }
.nrsm-pr-cur-vals { display: flex; gap: 20px; font-size: 13px; color: #aaa; }
.nrsm-pr-cur-vals strong { color: #fff; }
.nrsm-btn-primary {
  background: #a8c060;
  color: #161616;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  margin-top: 6px;
}
.nrsm-btn-primary:hover { background: #c8e870; transform: translateY(-2px); }
.nrsm-pr-msg { margin-top: 12px; padding: 10px 14px; border-radius: 8px; display: none; font-size: 13px; font-weight: 600; }
.nrsm-pr-msg.success { background: rgba(90,168,80,.15); color: #5aa850; border: 1px solid rgba(90,168,80,.25); display: block; }
.nrsm-pr-msg.error   { background: rgba(204,68,68,.15);  color: #cc4444; border: 1px solid rgba(204,68,68,.25);  display: block; }

/* MY REQUESTS TABLE */
.nrsm-my-requests h3 { font-size: 15px; font-weight: 900; margin-bottom: 14px; color: #888; }
.nrsm-req-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nrsm-req-table th, .nrsm-req-table td { padding: 10px 12px; border-bottom: 1px solid #2a2a2a; text-align: left; }
.nrsm-req-table th { color: #666; font-weight: 700; }
.nrsm-req-status { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 800; }
.nrsm-req-status.pending  { background: rgba(230,92,0,.15); color: #e65c00; }
.nrsm-req-status.approved { background: rgba(90,168,80,.15); color: #5aa850; }
.nrsm-req-status.rejected { background: rgba(204,68,68,.15); color: #cc4444; }
.nrsm-empty { color: #444; font-size: 13px; padding: 10px 0; }

.nrsm-biller-login { padding: 40px; text-align: center; background: #f9f9f9; border-radius: 8px; }
.nrsm-biller-login a { color: #a8c060; font-weight: 700; }

@media (max-width: 600px) {
  .nrsm-pr-inputs { grid-template-columns: 1fr; }
  .nrsm-bitem { flex-wrap: wrap; }
}
