/* Site-wide styles for the header location dropdown */
#cdp-dealer-location-container {
  z-index: 900;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #dcddde;
  margin-top: 3px; /* move down by 3px */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 12px;
}

/* utility to hide the container until toggled */
#cdp-dealer-location-container.cdp-hidden { display: none; }

/* simple layout helpers for the panel rows */
#cdp-dealer-dropdown .cdp-row { display:flex; gap:12px; align-items:flex-start; margin-bottom:12px; }
#cdp-dealer-dropdown .cdp-icon { color:#004781; line-height:1; padding-top:2px; }
#cdp-dealer-dropdown .cdp-col { flex:1; min-width:0; }
#cdp-dealer-dropdown .cdp-name { font-weight:600; color:#1e2a3a; }
#cdp-dealer-dropdown .cdp-address { color:#454c63; font-size:14px; }
#cdp-dealer-dropdown .cdp-links a { margin-right:14px; color:#0e76bc; text-decoration:none; }
#cdp-dealer-dropdown .cdp-links a:hover { text-decoration:underline; }
#cdp-dealer-dropdown .cdp-divider { height:1px; background:#dcddde; margin:12px 0; }

/* Toast confirmation for location change */
.cdp-location-toast {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647; /* above all */
  background: #0f766e; /* teal */
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-size: 14px;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 200ms ease;
}
.cdp-location-toast.show { opacity: 1; }

/* Brief highlight on header city link to draw attention */
.cdp-location-highlight {
  background-color: #fff3bf; /* soft yellow */
  transition: background-color 300ms ease;
}
