html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /* box-sizing: border-box; */
/*    font-size: 62.5%;  */
}

/*   html * {
  box-sizing: inherit;
} */

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: #FFF;
  border-radius: 12px;
  width: 5rem;
  height: 5rem;
  box-shadow: 0 0 2px 0 rgba(#000, .25), 0 0 10px 0 rgba(#000, .15);
}

.calendar {
  background-color: #FFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 1.6rem rgba(247, 165, 172);
  padding: 3.2rem;
   width: 30rem; 
}

.calendar__header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.2rem;
  padding: 0 0.4rem 1.2rem;
  text-transform: uppercase;
}

.calendar__day-names {
  border-bottom: 0.1rem solid #828889;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
  padding: 0.8rem 0;
}

.calendar__day-name {
  aspect-ratio: 1;
  color: #828889;
  font-weight: normal;
  text-align: center;
  width: 2.4rem;
}

.calendar__day_numbers {
  display: flex;
  flex-direction: column;
}

.calendar__day-numbers-row {
  display: flex;
  gap: 1.2rem;
  padding: 0.6rem 0;
}

/* .calendar__day-numbers-row:first-child {
  justify-content: flex-end;
} */

.calendar__day-number {
  border: 0;
  padding: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;

 /*  &:focus {
    outline: 0;
    color: #f7a5ac;;
    border: 2px solid var(--c-theme-primary-accent);
  } */
}

.calendar__day-number--unavailable {
   border: 0; 
  padding: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
   border: 2px solid transparent; 
  background-color: transparent;
  /* cursor: pointer; */
  color: #b3b3b3;
}


.calendar__day-number--current {
  background-color: #f7a5ac;
  border-radius: 50%;
  /* box-shadow: 0 0 0 0.4rem #f7a5ac; */
  color: #FFF;
}