:root {
  --accent: #ffd600; /* main color (yellow) */
  --dark-1: #000000; /* primary dark */
  --dark-2: #141414; /* secondary dark shade */
  --muted: #6b7280;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

body {
  background: linear-gradient(180deg, var(--dark-1) 0%, #0f0f0f 100%);
  color: #fff;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 214, 0, 0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 44px;
}

.brand-text {
  font-weight: 800;
  color: var(--accent);
  font-family: Poppins, Inter;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-icon {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-icon:hover {
  background: rgba(255, 214, 0, 0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  font-family: Inter, system-ui;
}

.btn-small {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
}

.btn-primary:hover {
  background: #f0c800;
  transform: translateY(-2px);
}

.btn-success {
  background: var(--success);
  color: #fff;
  padding: 12px 24px;
}

.btn-success:hover {
  background: #059669;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  padding: 12px 24px;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-warning {
  background: var(--warning);
  color: #000;
  padding: 12px 24px;
}

.btn-warning:hover {
  background: #d97706;
}

.btn-auth {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 16px;
}

/* Auth pages */
.auth-body {
  min-height: 100vh;
  padding-top: 80px;
}

.auth-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.auth-container-large {
  grid-template-columns: 1fr;
}

.auth-card {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 214, 0, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-family: Poppins, Inter;
  font-size: 28px;
  color: var(--accent);
  margin: 0 0 8px;
}

.auth-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-textarea,
select {
  background: #0a0a0a;
  border: 1px solid rgba(255, 214, 0, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: Inter, system-ui;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.form-error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.checkbox {
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}

.checkbox input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.checkbox-label {
  color: #e6e6e6;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 214, 0, 0.08);
  padding-top: 16px;
}

.auth-footer p {
  margin: 8px 0;
  font-size: 14px;
  color: #e6e6e6;
}

.auth-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-box {
  background: rgba(255, 214, 0, 0.05);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.info-box h3 {
  color: var(--accent);
  margin: 0 0 8px;
  font-size: 16px;
}

.info-box p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.info-display {
  background: rgba(255, 214, 0, 0.05);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.info-display p {
  margin: 8px 0;
  color: #e6e6e6;
  font-size: 14px;
}

.info-display strong {
  color: var(--accent);
}

/* File upload */
.file-upload {
  position: relative;
  border: 2px dashed rgba(255, 214, 0, 0.25);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.file-upload:hover {
  border-color: var(--accent);
  background: rgba(255, 214, 0, 0.02);
}

.file-input {
  display: none;
}

.file-input-label {
  pointer-events: none;
}

.upload-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.upload-hint {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}

.file-preview {
  margin-top: 16px;
  max-height: 200px;
  max-width: 100%;
}

.file-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  border: 1px solid rgba(255, 214, 0, 0.12);
}

/* Verification page */
.verification-status {
  background: rgba(255, 214, 0, 0.05);
  border: 1px solid rgba(255, 214, 0, 0.12);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.status-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.status-icon.pending {
  color: var(--warning);
}

.status-icon.verified {
  color: var(--success);
}

.status-text {
  color: var(--muted);
  margin: 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 8px;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.status-badge.verified {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.verification-info {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 16px;
  margin-top: 24px;
}

.verification-info h3 {
  color: var(--accent);
  margin-top: 0;
  font-size: 16px;
}

.verification-info ol {
  margin: 8px 0 0;
  padding-left: 20px;
  color: #e6e6e6;
}

.verification-info li {
  margin: 6px 0;
  font-size: 14px;
}

/* Dashboard */
.dashboard-body {
  min-height: 100vh;
  padding-top: 80px;
}

.dashboard-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
}

.dashboard-sidebar,
.admin-sidebar {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border-right: 1px solid rgba(255, 214, 0, 0.08);
  padding: 20px;
  min-height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
}

.sidebar-menu,
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-title {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

.menu-item {
  display: block;
  padding: 12px 14px;
  color: #e6e6e6;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 600;
  font-size: 14px;
}

.menu-item:hover,
.menu-item.active {
  background: rgba(255, 214, 0, 0.12);
  color: var(--accent);
}

.dashboard-main,
.admin-main {
  padding: 40px;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

.dashboard-page,
.admin-page {
  display: none;
}

.dashboard-page.active,
.admin-page.active {
  display: block;
}

.page-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.page-title {
  font-family: Poppins, Inter;
  font-size: 28px;
  color: var(--accent);
  margin: 0;
}

.page-subtitle {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
}

.subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.status-card,
.stat-card {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.status-card:hover,
.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.1);
}

.status-card h3,
.stat-card h3 {
  color: #e6e6e6;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.status-count,
.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.stat-number.warning {
  color: var(--warning);
}

.stat-number.success {
  color: var(--success);
}

.stat-number.danger {
  color: var(--danger);
}

.content-section {
  margin-bottom: 32px;
}

.content-section h2 {
  color: var(--accent);
  font-family: Poppins, Inter;
  margin: 0 0 16px;
  font-size: 18px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0a0a0a, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  color: #e6e6e6;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.action-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 214, 0, 0.05);
  color: var(--accent);
}

.action-icon {
  font-size: 24px;
}

.activity-log,
.team-list,
.business-list {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.empty-state {
  color: var(--muted);
  text-align: center;
  padding: 20px;
  margin: 0;
  font-size: 14px;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 214, 0, 0.04);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-text {
  color: #e6e6e6;
  font-size: 14px;
  margin: 0;
}

.activity-time {
  color: var(--muted);
  font-size: 12px;
}

.form-card {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.form-card h3 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 16px;
}

.dns-config {
  background: #0a0a0a;
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.dns-records {
  background: #000;
  border: 1px solid rgba(255, 214, 0, 0.08);
  color: var(--accent);
  padding: 12px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  margin: 8px 0 0;
}

/* Tables */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 214, 0, 0.08);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #0f0f0f, #141414);
}

.data-table thead {
  background: rgba(255, 214, 0, 0.04);
  border-bottom: 1px solid rgba(255, 214, 0, 0.08);
}

.data-table th {
  padding: 14px;
  text-align: left;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.data-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 214, 0, 0.04);
  color: #e6e6e6;
  font-size: 14px;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: rgba(255, 214, 0, 0.02);
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}

/* Team list */
.team-member {
  background: #0a0a0a;
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.team-member-info {
  flex: 1;
}

.team-member-name {
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.team-member-role {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}

/* Email list */
.emails-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-item {
  background: #0a0a0a;
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.email-info {
  margin-bottom: 12px;
}

.email-info strong {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.email-info small {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.status {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

.status.pending {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

.status.verified {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.dns-records {
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent);
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 12px;
}

.dns-records h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
}

.dns-records code {
  display: block;
  color: #e6e6e6;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  margin-bottom: 6px;
  font-size: 11px;
}

.dns-records code:last-child {
  margin-bottom: 0;
}

.email-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn-verify,
.btn-delete {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-verify {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.btn-verify:hover {
  background: #ffe600;
}

.btn-delete {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid #f44336;
}

.btn-delete:hover {
  background: rgba(244, 67, 54, 0.2);
}

.team-member-actions {
  display: flex;
  gap: 8px;
}

/* Business applications */
.business-card {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.business-info h3 {
  color: var(--accent);
  margin-top: 0;
}

.business-info p {
  color: #e6e6e6;
  margin: 6px 0;
  font-size: 14px;
}

.business-info strong {
  color: var(--accent);
}

.business-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.certificate-preview {
  background: #0a0a0a;
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 12px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.certificate-preview img {
  max-width: 100%;
  max-height: 450px;
  border-radius: 4px;
}

.certificate-preview p {
  color: var(--text-secondary);
  text-align: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border: 1px solid rgba(255, 214, 0, 0.12);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-large {
  max-width: 900px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 214, 0, 0.08);
  flex-shrink: 0;
}

.modal-header h2 {
  color: var(--accent);
  margin: 0;
  font-family: Poppins, Inter;
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid rgba(255, 214, 0, 0.08);
  justify-content: flex-end;
  flex-shrink: 0;
}

.modal-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 214, 0, 0.12);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Account Verification Modal */
.overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.verification-modal {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border: 1px solid rgba(255, 214, 0, 0.12);
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.verification-header {
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.05) 0%, rgba(255, 214, 0, 0.02) 100%);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 214, 0, 0.08);
}

.verification-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 10px;
}

.verification-content {
  padding: 40px 30px;
  text-align: center;
}

.verification-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffd600;
  margin: 0 0 12px 0;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.verification-subtitle {
  font-size: 15px;
  color: #b3b3b3;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.verification-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 214, 0, 0.25);
  color: #e6e6e6;
}

.btn-outline:hover {
  background: rgba(255, 214, 0, 0.05);
  border-color: rgba(255, 214, 0, 0.5);
  color: #ffd600;
}

.btn-large {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 120px;
}

.verification-modal .btn-primary {
  background: #ffd600;
  color: #000;
}

.verification-modal .btn-primary:hover {
  background: #0052cc;
}

.detail-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.certificate-section {
  border-top: 1px solid rgba(255, 214, 0, 0.08);
  padding-top: 20px;
  margin-top: 20px;
}

.certificate-section h3 {
  color: var(--accent);
  margin-top: 0;
}

/* Admin grid */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Analytics placeholder */
.analytics-placeholder {
  background: linear-gradient(180deg, #0f0f0f, #141414);
  border: 1px solid rgba(255, 214, 0, 0.08);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar,
  .admin-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 214, 0, 0.08);
    min-height: auto;
  }

  .sidebar-menu {
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
  }

  .menu-item {
    white-space: nowrap;
  }

  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-info {
    grid-template-columns: 1fr;
  }

  .business-card {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    gap: 12px;
  }

  .dashboard-main,
  .admin-main {
    padding: 20px;
  }

  .dashboard-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 24px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .table-container {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 10px;
  }

  .modal-content {
    width: 95%;
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

  .auth-main {
    padding: 20px;
  }

  .auth-card {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .auth-info {
    display: none;
  }

  .team-member {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .team-member-actions {
    width: 100%;
  }
}
