/* Move Overview add-plan plus to the far right edge of each day card.
   The weather badge stays in the card header; the plus remains plain text with no container. */

#friendsTab .overview-day-card {
  position: relative;
  padding-right: clamp(44px, 8vw, 58px) !important;
}

#friendsTab .overview-day-card .overview-day-card-actions {
  position: static !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

#friendsTab .overview-day-card .overview-day-add-plan-button {
  position: absolute !important;
  right: clamp(12px, 3vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-size: 23px;
  line-height: 1;
}

#friendsTab .overview-day-card.is-overview-day-compact .overview-day-add-plan-button {
  font-size: 21px;
}

@media (max-width: 820px) {
  #friendsTab .overview-day-card {
    padding-right: 44px !important;
  }

  #friendsTab .overview-day-card .overview-day-add-plan-button {
    right: 13px;
  }
}
