.jiri-month-card {
  padding: 8px 14px 9px;
}

.jiri-month-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.jiri-month-card header button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.jiri-month-card header button:last-child {
  min-width: 39px;
  justify-content: center;
  padding: 3px 10px;
  border: 1px solid rgba(14, 139, 72, 0.22);
  border-radius: 999px;
  color: #0b8848;
  font-size: 15px;
  font-weight: 800;
}

.jiri-week-row,
.jiri-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.jiri-week-row {
  margin-bottom: 5px;
  color: #676a69;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.jiri-day {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 8px;
  color: #111;
}

.jiri-day:hover {
  background: rgba(11, 138, 72, 0.08);
}

.jiri-day.is-selected {
  background: linear-gradient(145deg, #0d9b57, #068344);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 132, 68, 0.24);
}

.jiri-day.is-muted {
  color: #a9adab;
}

.jiri-day b {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.jiri-day span {
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
}

.jiri-day-dots {
  display: flex;
  gap: 4px;
  min-height: 5px;
  margin-top: 3px;
}

.jiri-day-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.jiri-day-dots .is-green {
  background: #22975a;
}

.jiri-day-dots .is-red {
  background: #d33c3d;
}

.jiri-day-dots .is-gold {
  background: #b8955b;
}

@media (max-height: 720px) {
  .jiri-month-card {
    padding-block: 9px;
  }

  .jiri-month-card header {
    margin-bottom: 9px;
  }

  .jiri-week-row {
    margin-bottom: 6px;
  }

  .jiri-day {
    min-height: 38px;
  }
}
