* {
  font-family: Commissioner;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.wrapper {
  display: flex;
  padding: 40px;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}
.title {
  align-self: stretch;
  color: #514e3e;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.46px;
}
.content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-self: stretch;
}

@media screen and (max-width: 868px) {
  .content {
    flex-direction: column;
    gap: 24px;
  }
}

.gregorian-wrapper,
.hebrew-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calendar-buttons {
  display: flex;
  gap: 16px;
}
/* .calendar-buttons div:hover,
.calendar-buttons div:active {
  scale: 1.05;
  transition: scale 0.2s cubic-bezier(0.4, 0, 0.2, 1);
} */

.calendar-buttons div {
  display: flex;
  /* width: 218px;
  height: 40px; */
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: #514e3e;
  color: var(--Base-White, #fff);
  font-family: Commissioner;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
}
#gregorian-result,
#hebrew-result {
  color: var(--text-primary-button-text, #453f2b);
  font-family: Commissioner;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.46px;
  align-self: stretch;
}
.today-button {
  display: flex;
  width: fit-content;
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}

#hebrew-month-img {
  max-width: 100%;
  height: auto;
  filter: invert(26%) sepia(8%) saturate(1309%) hue-rotate(357deg)
    brightness(94%) contrast(89%);
}
.calendar-inputs {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.calendar-inputs > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-inputs label {
  color: var(--Gray-700, #344054);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.calendar-inputs input,
.calendar-inputs select {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  width: 100%;
  min-width: 80px;

  /* color: var(--Gray-500, #667085); */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.calendar-inputs input[name="day"],
.calendar-inputs input[name="year"] {
  width: 80px;
}

.calendar-inputs select {
  width: 140px;
}

input[type="button"] {
  padding: 8px 16px;
  cursor: pointer;
}
