/* static/css/custom.css */

#map {
    height: 60vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card .card-title {
    font-weight: 500;
  }
  
  .input-field input:focus + label {
    color: #1e88e5 !important; /* change focus label color to Materialize blue darken-1 */
  }
  
  .input-field input:focus {
    border-bottom: 1px solid #1e88e5 !important;
    box-shadow: 0 1px 0 0 #1e88e5 !important;
  }
  .header-google-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px;
  }
  
  .header-google-btn:hover {
    background: rgba(255,255,255,0.15);
  }
  
  
  .icon-google {
    height: 30px;
    margin-right: 8px;
  }
  
  @media (max-width: 600px) {
    .dropdown-trigger span {
      display: none;
    }
  }
  
/* Make Materialize brand area flexible instead of absolutely positioned */
nav .brand-logo {
  position: static;          /* override Materialize absolute */
  transform: none;           /* remove translate */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Brand visuals to match your landing page */
.pivot-brand { color: #e5edf6; text-decoration: none; }
.pivot-icon {
  width: 34px; height: 34px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0b1220, #2563eb);
  box-shadow: 0 6px 18px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.06);
}
.pivot-icon-svg { width: 18px; height: 18px; color: #fff; }
.pivot-text { display: flex; flex-direction: column; line-height: 1.05; }
.pivot-name { font-weight: 700; letter-spacing: .2px; color: #fff; }
.pivot-sub  { font-size: 12px; color: #9aa6b2; }

/* Keep the subtitle hidden on small screens to avoid crowding */
@media (max-width: 992px) { /* Materialize "large" and down */
  .pivot-sub { display: none; }
}

/* Dark navbar to match landing */
nav.navbar-light {
  background-color: #0b0e14 !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
