:root {
  --duet-color-primary: #005fcc;
  --duet-color-text: #333;
  --duet-color-text-active: #fff;
  --duet-color-placeholder: #666;
  --duet-color-button: #f5f5f5;
  --duet-color-surface: #fff;
  --duet-color-overlay: rgba(0, 0, 0, 0.8);
  --duet-color-border: #333;

  --duet-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --duet-font-normal: 400;
  --duet-font-bold: 600;

  --duet-radius: 4px;
  --duet-z-index: 600;
}

/* Apply only if it's not a disabled day */
/*Behold AI slop to appease contrast requirements*/
.duet-date__day:not(.is-month):not(:disabled):not([aria-disabled="true"]) {
    background: transparent;
    color: var(--duet-color-text);
    cursor: default;
    opacity: 0.8;
}
/*A whacky hack to not highlight the current day using a color.*/
.is-today {
    background: unset;
    color: var(--duet-color-text);
    border: 0;
    border-radius: 50%;
}
/*A whacky hack to not highlight the current day using a color.*/
.duet-date__day.is-today {
    box-shadow: unset;
    position: relative;
    z-index: 200;
}

.is-today:focus {
    box-shadow: 0 0 5px var(--duet-color-primary)!important
}
/*A whacky hack to not highlight the current day using a color.*/
.duet-date__day.is-today::before {
    background: unset;
    border-radius: 50%;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.06;
    position: absolute;
    right: 0;
    top: 0;
}

   /*I made the selected date a square to avoid a finding :)*/
.duet-date__day[aria-pressed=true] {
    background: var(--duet-color-primary);
    box-shadow: none;
    color: var(--duet-color-text-active);
    outline: 0;
    border-radius:5%;
}