/* Compact location controls for Roads & Weather. */
.tp-location-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 10px;
  border:1px solid rgba(217,226,210,.95);
  border-radius:999px;
  background:rgba(255,253,246,.78);
  box-shadow:0 6px 14px rgba(42,52,40,.06);
}
.tp-location-strip strong{
  color:#15324a;
  font-weight:950;
  white-space:nowrap;
}
.tp-location-strip span{
  flex:1;
  color:#5b6a7d;
  font-size:13px;
  line-height:1.2;
}
.tp-location-strip div{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.tp-location-strip button{
  border:1px solid #cfdcca;
  background:#fffef9;
  color:#15324a;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:950;
}
.tp-location-strip button.primary{
  background:#15324a;
  color:#fff;
  border-color:#15324a;
}
.tp-location-strip #roadsWeatherStatus{
  display:none;
}
@media(max-width:720px){
  .tp-location-strip{
    align-items:flex-start;
    border-radius:16px;
    flex-wrap:wrap;
  }
  .tp-location-strip span{
    flex-basis:100%;
    order:2;
  }
  .tp-location-strip div{
    margin-left:auto;
  }
}
