/* Unified Today / Yesterday switch: one clean surface with no center divider. */
.day-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-bottom:10px;
  border:0;
  border-radius:8px;
  background:linear-gradient(145deg,rgba(27,32,26,.72),rgba(21,25,20,.72));
}
.day-switch .day-tab{
  position:relative;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  outline:none!important;
  padding:11px 13px;
}
.day-switch .day-tab + .day-tab{
  border-left:0!important;
}
.day-switch .day-tab + .day-tab::before{
  content:none!important;
  display:none!important;
}
.day-switch .day-tab.active{
  color:var(--yellow);
  background:rgba(131,223,137,.018)!important;
}
.day-switch .day-tab span{
  background:transparent;
  padding:2px 0 2px 8px;
  min-width:auto;
  border-radius:0;
}
@media(max-width:680px){
  .day-switch{
    grid-template-columns:1fr 1fr;
  }
  .day-switch .day-tab{
    padding:10px 9px;
    font-size:10.5px;
  }
  .day-switch .day-tab + .day-tab{
    border-left:0!important;
  }
}
