.page {
  height: auto;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  position: relative;
}

.booking {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
.booking__header {
  display: flex;
  padding-left: 70px;
  border-bottom: 1px solid #dadce0;
  height: 60px;
  position: sticky;
  top: 70px;
  background: #fff;
  z-index: 10;
}
.booking__body {
  display: flex;
  flex: 1;
}
.booking__workspaces-grid {
  display: flex;
  flex: 1;
  min-height: 1440px;
  background-image: linear-gradient(#dadce0 1px, transparent 1px);
  background-size: 100% 60px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: #fff;
  border-bottom: 1px solid #dadce0;
  z-index: 20;
}

.booking-desk-btn {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  margin-right: 30px;
  font-weight: 500;
  color: #3c4043;
  background-color: #e8f2f7;
  border: none;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.booking-desk-btn:hover {
  background-color: #def0fa;
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.booking-desk-btn__icon {
  margin-right: 12px;
  font-size: 20px;
  background: linear-gradient(to bottom, #4285f4 25%, #3556ea 25%, #3556ea 50%, #05fba9 50%, #05fba9 75%, #6134a8 75%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navigation {
  display: flex;
  align-items: center;
}
.navigation__today-btn {
  height: 36px;
  padding: 0 16px;
  margin-right: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #1a73e8;
  border: 1px solid #dadce0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.navigation__today-btn:hover {
  color: #1a73e8;
  background-color: #f1f3f4;
}
.navigation__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: #70757a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}
.navigation__nav-icon:hover {
  background-color: #def0fa;
}
.navigation__displayed-day {
  margin-left: 12px;
  font-size: 22px;
  color: #3c4043;
}

.title {
  margin-left: 32px;
  font-size: 22px;
  font-weight: 400;
  color: #70757a;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  cursor: default;
}
.title::first-letter {
  color: #1a73e8;
  font-weight: 700;
}

.booking__time-scale {
  width: 70px;
  flex-shrink: 0;
  border-right: 1px solid #dadce0;
  background-color: #f1f3f4;
}

.time-slot {
  position: relative;
  height: 60px;
  padding-left: 24px;
  box-sizing: border-box;
}
.time-slot__time {
  position: absolute;
  top: 0;
  right: auto;
  left: 12px;
  padding: 0 4px;
  font-size: 12px;
  color: #70757a;
  text-align: left;
}

.workspace-column {
  flex: 1;
  border-right: 1px solid #dadce0;
  position: relative;
  height: 1440px;
}
.workspace-column:last-child {
  border-right: none;
}

.booking__time-slot {
  height: 60px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.booking__time-slot:not(:last-child) {
  border-bottom: 1px solid rgba(218, 220, 224, 0.2);
}
.booking__time-slot:hover {
  background-color: rgba(26, 115, 232, 0.02);
}

.workspace-header {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-right: 1px solid #dadce0;
  font-weight: 500;
  color: #3c4043;
  background: #d4f0f5;
  cursor: pointer;
  transition: background-color 0.2s;
  z-index: 50;
}
.workspace-header:hover {
  background-color: rgba(26, 115, 232, 0.05);
}
.workspace-header__name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}
.booking-form__settings, .booking-form__time {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.booking-form__settings input,
.booking-form__settings select, .booking-form__time input,
.booking-form__time select {
  flex: 1;
}
.booking-form textarea {
  min-height: 100px;
  resize: none;
  font-family: inherit;
}
.booking-form__close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #5f6368;
  font-size: 20px;
}
.booking-form__close-btn:hover {
  color: #202124;
}

.booking-form__field {
  background-color: #f1f3f4;
  border: 1px solid transparent;
}
.booking-form__field:focus {
  background-color: #fff;
  border-color: #1a73e8;
}

.modal.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.overlay.hidden {
  display: none;
}

.event {
  position: absolute;
  left: 2px;
  width: calc(100% - 4px);
  background-color: #1a73e8;
  color: white;
  border-radius: 4px;
  padding: 4px;
  font-size: 12px;
  z-index: 5;
  border: 1px solid #185abc;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
}
.event__name {
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.event__time {
  font-size: 10px;
  opacity: 0.9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

/*# sourceMappingURL=styles.css.map */
