body {
  font-family: "Google Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

.btn-brand {
  background-color: #f64f03 !important;
  color: white !important;
}

.btn-brand:hover {
  background-color: #eb530d !important;
}
/* Layout */

.page-layout {
  display: grid;
  grid-template-columns: 15% 70% 15%;
}

/* Sidebar sticky ad */

.sticky-ad {
  position: sticky;
  top: 20px;
}

/* Ad placeholders */

.ad-box {
  text-align: center;
  padding: 1rem;
  border: 1px dashed #ccc;
  margin: 1.5rem 0;
}

/* Tracking box */

.tracking-box {
  padding: 2rem;
  background: #f6f8fa;
  border-radius: 8px;
}

/* Display utilities */
.d-block {
  display: block;
}
.d-none {
  display: none;
}

/* Aspect ratio */
.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

/* Width & Height utilities */
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

/* Border utilities */
.border-0 {
  border: 0;
}

:root {
  --primary: #f64f03;
}

header {
  text-align: center;
  padding: 2rem 0 1rem;
}
.hero {
  text-align: center;
  margin-bottom: 2rem;
}
.tracker-box {
  display: flex;
  gap: 0.5rem;
}
.tracker-box input {
  flex: 1;
}
.card {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.timeline {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}
.timeline div {
  margin-bottom: 0.8rem;
}

@media (min-width: 1870px) {
  .block-label {
    /* position: absolute;
    width: 21rem;
    height: 37.5rem;
    background-color: #ffffff;
    z-index: 5;
    right: 0.7rem;
    bottom: 0rem; */

    position: absolute;
    width: 33%;
    height: 100%;
    background-color: #ffffff;
    z-index: 5;
    right: 0.7rem;
    bottom: 0rem;
  }
}

/* Responsive display - mobile first */
@media (min-width: 768px) {
  /* md breakpoint */
  .d-md-block {
    display: block;
  }
  .d-md-none {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .d-md-none {
    display: block;
  } /* or whatever display type you need */
}

/* Mobile layout */

@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    /* order: 2; */
    display: none;
  }
}
