/* NV Buyer Portal Luxury Style */
.nv-auth-wrap {
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:60vh;
  background:#f3f5f7;
}
.nv-card {
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  padding:20px 24px;
  margin-bottom:20px;
}
.nv-auth-card {
  max-width:420px;
  width:100%;
  border-top:4px solid #63cc0f;
}
.nv-card h2 {
  margin-top:0;
  font-size:1.3rem;
}
.nv-card label {
  display:block;
  margin-bottom:4px;
  font-weight:500;
}
.nv-card input[type="text"],
.nv-card input[type="email"],
.nv-card input[type="password"],
.nv-card input[type="file"] {
  width:100%;
  padding:10px;
  border:1px solid #d1d5db;
  border-radius:8px;
  margin-bottom:12px;
  background:#fff;
}
.nv-btn {
  background:#63cc0f;
  border:none;
  color:#fff;
  padding:9px 16px;
  border-radius:9999px;
  cursor:pointer;
  font-weight:600;
}
.nv-btn-outline {
  background:#fff;
  border:1px solid #63cc0f;
  color:#63cc0f;
  padding:8px 16px;
  border-radius:9999px;
  text-decoration:none;
  font-weight:600;
}
.nv-small {
  font-size:0.85rem;
  margin-top:10px;
}
.nv-error {
  background:#ffe2e2;
  color:#991b1b;
  padding:8px 12px;
  border-radius:6px;
  margin-bottom:10px;
}
.nv-success {
  background:#e5ffea;
  color:#166534;
  padding:8px 12px;
  border-radius:6px;
  margin-bottom:10px;
}
.nv-dashboard-wrap {
  max-width:1200px;
  margin:20px auto;
  padding:0 15px 40px;
}
.nv-dashboard-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.nv-dashboard-header h1 {
  margin:0;
}
.nv-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
}
.nv-list {
  list-style:none;
  padding:0;
  margin:0;
}
.nv-list li {
  border-bottom:1px solid #edf1f3;
  padding:8px 0;
}
.nv-meta {
  display:block;
  font-size:0.7rem;
  color:#6b7280;
  margin-bottom:4px;
}
.nv-table {
  width:100%;
  border-collapse:collapse;
}
.nv-table th,
.nv-table td {
  border-bottom:1px solid #edf1f3;
  padding:8px 4px;
  font-size:0.85rem;
}
.nv-footer-card {
  text-align:center;
  background:linear-gradient(120deg,#ffffff 0%, #edf2f7 100%);
  font-size:0.75rem;
  color:#4b5563;
}
@media (max-width:600px) {
  .nv-dashboard-header {
    flex-direction:column;
    align-items:flex-start;
  }
}