/* === Global Styles === */
body {
    font-family: system-ui, Arial, sans-serif;
    margin: 0;
    background: #000000; /* black background */
    color: #ffffff; /* default text color white */
    text-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff; /* global text glow */
  }
  
  /* === Container === */
  .container {
    max-width: 960px;
    margin: 18px auto;
    background: #0a0a0a; /* slightly lighter black */
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); /* glowing border effect */
  }
  
  /* === Header === */
  header h1 {
    text-align: center;
    margin: 0 0 16px;
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
  }
  
  /* === Forms & Auth === */
  .auth .row,
  .dashboard {
    display: grid;
    gap: 12px;
  }
  
  .auth input,
  .auth select,
  .trip-controls input,
  textarea {
    padding: 12px;
    border: 1px solid #00ffff;
    border-radius: 8px;
    font-size: 1rem;
    background: #000000;
    color: #00ffff;
    box-shadow: 0 0 8px #00ffff inset;
    transition: border 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }
  
  .auth input::placeholder,
  .auth select::placeholder,
  textarea::placeholder {
    color: #00ffff;
    opacity: 0.7;
    text-shadow: 0 0 6px #00ffff;
  }
  
  .auth input:focus,
  .auth select:focus,
  .trip-controls input:focus,
  textarea:focus {
    border-color: #00ffff;
    box-shadow: 0 0 12px #00ffff, 0 0 20px #00ffff inset;
    outline: none;
    color: #00ffff;
  }
  
  /* === Buttons === */
  .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  button {
    padding: 10px 16px;
    border: 1px solid #00ffff;
    border-radius: 8px;
    background: #000000;
    color: #00ffff;
    font-weight: 600;
    cursor: pointer;
    text-shadow: 0 0 4px #00ffff;
    box-shadow: 0 0 8px #00ffff;
    transition: all 0.2s ease;
  }
  
  button:hover {
    background: #00ffff;
    color: #000000;
    text-shadow: 0 0 12px #000000;
    box-shadow: 0 0 16px #00ffff;
    transform: translateY(-2px);
  }
  
  button:disabled {
    background: #111111;
    color: #555555;
    box-shadow: none;
    cursor: not-allowed;
  }
  
  /* === Map === */
  .map {
    height: 420px;
    border: 1px solid #00ffff;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 0 12px #00ffff inset;
  }
  
  /* === Lists === */
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    padding: 10px 12px;
    border: 1px solid #00ffff;
    border-radius: 8px;
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #00ffff;
    box-shadow: 0 0 8px #00ffff inset;
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  
  li:hover {
    background: #050505;
    box-shadow: 0 0 12px #00ffff inset;
  }
  
  /* === Ride Actions === */
  .ride-actions {
    display: flex;
    gap: 8px;
  }
  
  /* === Status === */
  #status {
    font-weight: 600;
    margin-top: 8px;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
  }
  
  /* === Global Text Glow for Labels & Spans === */
  label, span, p, h2, h3 {
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff;
  }
  
  .split-container {
    display: flex;
    flex-direction: column;
    height: 420px; /* Same height as original map */
    margin-top: 10px;
  }
  
  .split-pane {
    flex: 1;
    border: 1px solid #00ffff;
    box-shadow: 0 0 12px #00ffff inset;
  }
  
  .top-pane {
    border-radius: 10px 10px 0 0;
  }
  
  .bottom-pane {
    border-radius: 0 0 10px 10px;
    border-top: none;
  }
  
  .website-frame {
    width: 100%;
    height: 100%;
    background: #000000;
    border: none;
  }
  
  .split-container .map {
    height: 100%;
    margin-top: 0;
    border-radius: inherit;
    border: none;
    box-shadow: none;
  }
  