/* ===== CSS Variables ===== */
:root {
  --bg: #0f172a;
  --bg2: #1e293b;
  --bg3: #334155;
  --border: #334155;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --free: #22c55e;
  --busy: #ef4444;
  --offline: #64748b;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 60px;
  --header-h: 56px;
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  padding: 10px 12px;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
select option { background: var(--bg2); }
a { color: var(--primary); text-decoration: none; }

/* ===== Login Page ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 20px;
}
.login-card {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 36px 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow);
}
.login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.login-logo .boat-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 8px;
}
.login-logo h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
}
.login-logo p {
  font-size: 12px;
  color: var(--text2);
  margin-top: 4px;
}
.login-form .field { margin-bottom: 16px; }
.login-form label {
  display: block;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.login-form .btn-login {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.2s;
}
.login-form .btn-login:hover { background: var(--primary-dark); }
.login-form .btn-login:active { transform: scale(0.98); }
.login-error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: 12px;
  font-size: 13px;
  display: none;
}
.login-error.show { display: block; }

/* ===== App Shell ===== */
#app-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* ===== Header ===== */
.app-header {
  height: var(--header-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  flex-shrink: 0;
  z-index: 100;
}
.app-header .logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}
.app-header .user-info {
  flex: 1;
  min-width: 0;
}
.app-header .user-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-header .user-role {
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-header .btn-logout {
  background: transparent;
  color: var(--text2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  white-space: nowrap;
}
.app-header .btn-logout:hover { color: var(--text); background: var(--bg3); }

/* ===== Tab Content ===== */
#tab-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Map tab takes full height */
#tab-content.map-active {
  overflow: hidden;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
  height: var(--nav-h);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  z-index: 100;
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text2);
  font-size: 10px;
  gap: 4px;
  transition: color 0.15s;
  padding: 4px 2px;
}
.nav-item .nav-icon { font-size: 20px; line-height: 1; }
.nav-item.active { color: var(--primary); }
.nav-item:active { background: rgba(255,255,255,0.05); }

/* ===== Map Tab ===== */
#map-container {
  width: 100%;
  height: 100%;
  position: relative;
}
#leaflet-map {
  width: 100%;
  height: 100%;
}
.map-type-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 12px;
  color: var(--text);
  box-shadow: var(--shadow);
}

/* ===== Boat Marker ===== */
.boat-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.boat-marker-icon {
  font-size: 24px;
  line-height: 1;
}
.boat-marker-label {
  background: rgba(15,23,42,0.9);
  border: 2px solid var(--free);
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: white;
  margin-top: -4px;
}
.boat-marker-label.busy { border-color: var(--busy); }
.boat-marker-label.offline { border-color: var(--offline); color: var(--text2); }

.pier-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pier-marker-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.pier-marker-label {
  background: rgba(14,165,233,0.9);
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  margin-top: -4px;
  white-space: nowrap;
}

/* ===== Boats Grid Tab ===== */
.boats-tab {
  padding: 12px;
}
.boats-tab .tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tab-title {
  font-size: 16px;
  font-weight: 700;
}
.boats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) {
  .boats-grid { grid-template-columns: repeat(3, 1fr); }
}
.boat-card {
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, transform 0.1s;
  cursor: default;
}
.boat-card.free { border-color: rgba(34,197,94,0.4); }
.boat-card.busy { border-color: rgba(239,68,68,0.4); }
.boat-card.offline { border-color: rgba(100,116,139,0.3); opacity: 0.7; }
.boat-card.clickable { cursor: pointer; }
.boat-card.clickable:hover { transform: scale(1.02); }
.boat-card.clickable:active { transform: scale(0.98); }
.boat-card .boat-name {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.free { background: rgba(34,197,94,0.15); color: var(--free); }
.status-badge.busy { background: rgba(239,68,68,0.15); color: var(--busy); }
.status-badge.offline { background: rgba(100,116,139,0.15); color: var(--offline); }
.status-badge::before { content: '●'; font-size: 8px; }
.boat-pax {
  font-size: 13px;
  color: var(--text2);
}
.boat-trip-time {
  font-size: 11px;
  color: var(--text2);
}

/* ===== Stats Tab ===== */
.stats-tab {
  padding: 12px;
}
.stats-tab .tab-header { margin-bottom: 16px; }
.stats-section { margin-bottom: 20px; }
.stats-section-title {
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.stat-card {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}
.stat-card .stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.stat-card .stat-label {
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.stat-card .stat-sub {
  font-size: 11px;
  color: var(--text2);
  margin-top: 2px;
}

.by-boat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.by-boat-table th {
  text-align: left;
  padding: 8px 6px;
  color: var(--text2);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.by-boat-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(51,65,85,0.5);
  vertical-align: middle;
}
.by-boat-table tr:last-child td { border-bottom: none; }
.by-boat-table td:first-child { font-weight: 600; }
.table-scroll { overflow-x: auto; }

/* ===== History Tab ===== */
.history-tab {
  padding: 12px;
}
.history-tab .tab-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.history-tab .filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.history-tab .filter-row input,
.history-tab .filter-row select {
  flex: 1;
  min-width: 120px;
  font-size: 13px;
}
.trip-list { display: flex; flex-direction: column; gap: 8px; }
.trip-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.trip-card.cancelled {
  border-color: rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.05);
}
.trip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.trip-boat-name {
  font-weight: 700;
  font-size: 14px;
}
.trip-amount {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}
.trip-amount.cancelled-amount {
  color: var(--busy);
  text-decoration: line-through;
}
.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
}
.trip-meta span { display: flex; align-items: center; gap: 3px; }
.trip-status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}
.trip-status-badge.active { background: rgba(34,197,94,0.15); color: var(--free); }
.trip-status-badge.completed { background: rgba(14,165,233,0.15); color: var(--primary); }
.trip-status-badge.cancelled { background: rgba(239,68,68,0.15); color: var(--busy); }

/* ===== Settings Tab ===== */
.settings-tab {
  padding: 12px;
}
.settings-section {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.settings-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 5px;
  font-weight: 500;
}
.form-row {
  display: flex;
  gap: 8px;
}
.form-row .form-group { flex: 1; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { opacity: 0.9; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { opacity: 0.9; }
.btn-success { background: var(--free); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg3); color: var(--text); }
.btn-sm { padding: 6px 10px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-icon { padding: 8px; border-radius: 50%; }

/* ===== Boat Management List ===== */
.boat-list { display: flex; flex-direction: column; gap: 8px; }
.boat-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.boat-list-item .boat-info { flex: 1; min-width: 0; }
.boat-list-item .boat-info .name { font-weight: 600; font-size: 14px; }
.boat-list-item .boat-info .imei { font-size: 11px; color: var(--text2); font-family: monospace; }
.boat-list-item .actions { display: flex; gap: 6px; }

/* ===== User Management List ===== */
.user-list { display: flex; flex-direction: column; gap: 8px; }
.user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.user-item .user-info { flex: 1; }
.user-item .user-info .uname { font-weight: 600; }
.user-item .user-info .urole {
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-overlay.show { opacity: 1; }
.modal {
  background: var(--bg2);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 20px 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}
.modal-overlay.show .modal { transform: translateY(0); }
@media (min-width: 500px) {
  .modal-overlay { align-items: center; }
  .modal {
    border-radius: var(--radius);
    max-height: 85vh;
  }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal-title { font-size: 17px; font-weight: 700; }
.modal-close {
  background: var(--bg3);
  color: var(--text2);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.modal .form-group { margin-bottom: 12px; }
.modal .form-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.modal .form-actions .btn { flex: 1; }

/* ===== QR Code ===== */
.qr-display {
  text-align: center;
  padding: 12px;
}
.qr-display img {
  max-width: 200px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
}
.qr-display p {
  color: var(--text2);
  font-size: 12px;
  margin-top: 8px;
}

/* ===== Payment Type Selector ===== */
.payment-options {
  display: flex;
  gap: 8px;
}
.payment-option {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: var(--text2);
  transition: all 0.15s;
}
.payment-option.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(14,165,233,0.1);
}

/* ===== Map Pier Picker ===== */
.map-crosshair { cursor: crosshair !important; }
.pier-picker-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,165,233,0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1000;
  white-space: nowrap;
  pointer-events: none;
}

/* ===== Toast ===== */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.2s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: var(--free); color: var(--free); }
.toast.error { border-color: var(--busy); color: #fca5a5; }
.toast.info { border-color: var(--primary); color: var(--primary); }

/* ===== Loader ===== */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text2);
  font-size: 13px;
  gap: 10px;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Map Instructions ===== */
.map-instructions-overlay {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,23,42,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text2);
  z-index: 999;
  pointer-events: none;
  white-space: nowrap;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text2);
}
.empty-state .empty-icon { font-size: 40px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* ===== Map Controls ===== */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: var(--shadow) !important;
}
.leaflet-control-zoom a {
  background: var(--bg2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
  font-size: 16px !important;
}
.leaflet-control-zoom a:hover { background: var(--bg3) !important; }
.leaflet-popup-content-wrapper {
  background: var(--bg2) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--border) !important;
}
.leaflet-popup-tip { background: var(--bg2) !important; }
.leaflet-popup-content { margin: 12px 14px !important; font-size: 13px !important; }

/* ===== Misc ===== */
.text-muted { color: var(--text2); }
.text-primary { color: var(--primary); }
.text-free { color: var(--free); }
.text-busy { color: var(--busy); }
.text-sm { font-size: 12px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.gap-8 { gap: 8px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }

/* ===== Trip Cancel Modal ===== */
.refund-section {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 8px;
}
.refund-section .refund-title {
  font-size: 12px;
  color: var(--busy);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== Wind Widget ===== */
.wind-control {
  margin-bottom: 30px !important;
  margin-left: 10px !important;
}
.wind-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,23,42,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 14px 10px 10px;
  color: #fff;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wind-loading {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 10px 14px;
  min-width: auto;
}
.wind-compass {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.wind-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wind-speed {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.wind-speed span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.wind-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.wind-dir-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

@keyframes windArrowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ===== Wind Widget ===== */
.wind-control { margin-bottom: 28px !important; margin-left: 10px !important; }
.wind-widget {
  display: flex; align-items: center; gap: 8px;
  background: rgba(15,23,42,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 8px 12px 8px 8px; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.wind-loading { font-size: 12px; color: rgba(255,255,255,0.6); padding: 10px 14px; }
.wind-compass { width: 58px; height: 58px; flex-shrink: 0; }
.wind-info { display: flex; flex-direction: column; gap: 2px; }
.wind-speed { font-size: 20px; font-weight: 800; line-height: 1.1; }
.wind-speed span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); margin-left: 2px; }
.wind-desc { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 600; }
.wind-sub { font-size: 11px; color: rgba(255,255,255,0.45); }

/* Map persistent layer */
#map-persistent {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
}
#leaflet-map {
  width: 100%;
  height: 100%;
}
