@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


.calendar-wrapper {
  position: relative;
}

.calendar {
  display: none;
  position: absolute;
  top: 41px;
  left: -61px;
  z-index: 2;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 379px;
  padding: 10px;
}

.calendar-open-arrow {
  position: absolute;
  display: inline-flex;
  width: 18px;
  right: 28px;
  top: 2px;
  stroke: #6e6e6e;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
padding: 10px 0px;
  border-bottom: 1px solid #ccc;
}

.calendar-header #current-month-year {
  font-weight: bold;
  font-size: 16px;
}
.calendar-wrapper input{
 border:none;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 10px 0;
}

.day-cell {
  position: relative;
  padding: 20px 10px 2px 0;
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: var(--domino-calendar-bgcolor);
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  min-width: 35px;
  width: 35px;
  font-weight: bold;
  color: #333;
}

.day-cell:hover {
  background-color: #e9e9e9;
}

.day-cell > svg {
  position: absolute;
  display: block;
  top: -1px;
  left: 17px;
}

.occupied {
  color: #8b4b4b;
}

.day-cell.occupied {

}

.day-cell.occupied svg.daycell-svg {
  fill: blue;
}

.daycell-span {
  }

.day-cell-price {
  display: flex;
  max-height: 11px;
  font-size: 10px;
  justify-content: flex-end;
}

.daycell-svg {

}

.daycell-svg-path {

}

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    z-index: 1;
    min-width: 100px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
  }

.dropdown-menu .dropdown-item {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #eee;
}

.selected-day-firstday {
   background-image: linear-gradient(to bottom right, transparent 50%, var(--domino-calendar-accent-bgcolor) 0);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left;
}

.selected-day-lastday {
  background-image: linear-gradient(to top left, transparent 50%, var(--domino-calendar-accent-bgcolor) 0);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left;
}

.selected-day {
  background-color: var(--domino-calendar-accent-bgcolor) !important;
}

input {
  all: inherit;
  background-color: white;
  font-size: 16px;
  min-width: 200px;
  padding-top: 3px;
}

.calendar-header-button
{
  background-color: var(--domino-button-bgcolor);
    color: var(--domino-button-color);
  font-family: “Jost”, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 3px;
  position: relative;
   padding: 3px;
   padding-left: 6px;
    padding-right: 6px;
    WIDTH: 70px;
  border: 1px solid var(--domino-button-border);
}

.calendar-header-button:hover {
    background-color: var(--domino-button-bgcolor-hover);
    color: var(--domino-button-color);
  }

.calendarcss {
  color: var(--domino-body-color);
   text-transform: capitalize;
  line-height: 1.2em;
}

.calendar-wrapper {
  color: var(--domino-body-color);
}

@media (max-width: 560px) {
  .calendar {
    /*background-color: green;*/
    max-width: 302px;
  }
}

@media (max-width: 560px) {
  .calendar-days {
    gap: 3px;
  }
}

@media (max-width: 560px) {
  .day-cell {
    font-size: 12px;
    min-width: 30px;
    width: 30px;
  }
}

.dropdown-menu.drop-up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

/* Venstrejusteret dropdown */

.dropdown-menu.align-left {
  left: auto;
  right: 0;
}

/* Højrejusteret dropdown (standard) */

.dropdown-menu.align-right {
  left: 0;
  /*Standard: til højre for knappen;*/
  right: auto;
}

.not-allowed {
  opacity: 0.8;
 background: repeating-linear-gradient(-45deg, #bfbfbf, #bababa 1px, #ededed 3px, #ebebeb 5px);
}




