:host {
  width: 100%;
  min-width: 16rem;
  max-width: 30rem;
  border: 0.1rem solid var(--border-color, lightgrey);
  border-radius: 0.3rem;
  padding: 2rem 1rem;
  box-shadow: 0.5rem 0.5rem 1.5rem grey;
  box-sizing: border-box;
  color: var(--main-color, black);
  background-color: var(--bg-color, white);
  cursor: pointer;
  position: absolute;
  top: 4.3rem;
  left: 0;
  z-index: 1051;
}
:host javo-icon.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  color: var(--main-color, black);
}
:host .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  font-size: 1.5rem;
}
:host .navigation javo-icon {
  width: 1.6rem;
  color: var(--highlight-color, orange);
}
:host .navigation p {
  flex: 1;
  text-align: center;
  margin: 0;
}
:host .weekdays {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
:host .weekdays > div.weekday {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
:host .week {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}
:host .week .day {
  font-size: 1.4rem;
  flex: 1;
  text-align: center;
}
:host .week .day .day-text {
  display: inline-block;
  padding: 0.8rem;
  min-width: 1.5rem;
}
:host .week .day .day-text.active {
  background-color: var(--highlight-color, orange);
  color: white;
}

:host(.inline) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
}