:host {
  display: flex;
  flex-direction: column;
  overflow: visible;
  border-radius: var(--nylas-border-radius-2x);
  width: fit-content;
  background: var(--nylas-base-0);
  position: relative;
  box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.05), 0px 5px 15px -3px rgba(0, 0, 0, 0.1);
  --nylas-primary: #2563eb;
  --nylas-error: #cc4841;
  --nylas-error-50: #ffeae8;
  --nylas-error-100: #ffc5bf;
  --nylas-error-200: #fecaca;
  --nylas-error-pressed: #992222;
  --nylas-wraning: #f06c00;
  --nylas-success: #16a392;
  --nylas-info: #2b8fc2;
  --nylas-base-0: #ffffff;
  --nylas-base-25: #fcfcfd;
  --nylas-base-50: #f8f9fc;
  --nylas-base-100: #eaecf5;
  --nylas-base-200: #d5d9eb;
  --nylas-base-300: #b3b8d8;
  --nylas-base-400: #717bbc;
  --nylas-base-500: #4e5ba6;
  --nylas-base-600: #3e4784;
  --nylas-base-700: #263f72;
  --nylas-base-800: #293056;
  --nylas-base-900: #101323;
  --nylas-base-950: #0e101b;
  --nylas-color-blue-100: #e0e6f9;
  --nylas-border-radius: 0.25rem;
  --nylas-border-radius-2x: 0.5rem;
  --nylas-border-radius-3x: 0.75rem;
  --nylas-font-family: "Inter", sans-serif;
  /* Greys */
  --nylas-color-black: #000000;
  --nylas-color-grey-900: #2c2c2c;
  --nylas-color-grey-800: #4b4b4b;
  --nylas-color-grey-700: #6e6e6e;
  --nylas-color-grey-600: #8e8e8e;
  --nylas-color-grey-500: #b3b3b3;
  --nylas-color-grey-400: #cacaca;
  --nylas-color-grey-300: #e1e1e1;
  --nylas-color-grey-200: #eaeaea;
  --nylas-color-grey-100: #f5f5f5;
  --nylas-color-grey-50: #fbfcfe;
  --nylas-color-white: #ffffff;
  /* Reds */
  --nylas-color-red-900: #992222;
  --nylas-color-red-700: #cc4841;
  --nylas-color-red-500: #ff786a;
  --nylas-color-red-300: #ffa79e;
  --nylas-color-red-100: #ffc5bf;
  --nylas-color-red-50: #ffeae8;
  /* Blues */
  --nylas-color-blue-900: #213571;
  --nylas-color-blue-700: #314fa9;
  --nylas-color-blue-500: #4169e1;
  --nylas-color-blue-300: #bdccf9;
  --nylas-color-blue-100: #e0e6f9;
  --nylas-color-blue-50: #f6f8fd;
  /* Yellows */
  --nylas-color-yellow-900: #7c6506;
  --nylas-color-yellow-700: #c29f09;
  --nylas-color-yellow-500: #f7c90b;
  --nylas-color-yellow-300: #f9de70;
  --nylas-color-yellow-100: #fceba9;
  --nylas-color-yellow-50: #fdf4ce;
  /* Greens */
  --nylas-color-green-900: #0e6b60;
  --nylas-color-green-700: #16a392;
  --nylas-color-green-500: #17c3b2;
  --nylas-color-green-300: #74dbd1;
  --nylas-color-green-100: #a2e7e0;
  --nylas-color-green-50: #d1f3f0;
  /* Purples */
  --nylas-color-purple-900: #643554;
  --nylas-color-purple-700: #954f7d;
  --nylas-color-purple-500: #c769a7;
  --nylas-color-purple-300: #dda5ca;
  --nylas-color-purple-100: #e0bdd6;
  --nylas-color-purple-50: #e9dde5;
  /* Skies */
  --nylas-color-sky-900: #20698f;
  --nylas-color-sky-700: #2b8fc2;
  --nylas-color-sky-500: #6dceff;
  --nylas-color-sky-300: #8fdaff;
  --nylas-color-sky-100: #b8e7ff;
  --nylas-color-sky-50: #d9f2ff;
}
:host nylas-notification {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  :host {
    width: -moz-available;
    /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;
    /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    min-width: 325px;
  }
}

div.scheduler-editor-content {
  height: 800px;
}
@media screen and (max-width: 768px) {
  div.scheduler-editor-content {
    height: auto;
  }
}
div.scheduler-editor-content slot[name=login-required] {
  height: inherit;
}

div.scheduler-editor-content--group {
  height: 800px;
}
@media screen and (max-width: 768px) {
  div.scheduler-editor-content--group {
    height: auto;
  }
}

div.scheduler-editor-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--nylas-base-200);
  color: var(--nylas-base-900);
  min-width: 924px;
}
@media screen and (max-width: 768px) {
  div.scheduler-editor-header {
    width: auto;
    min-width: calc(325px - 1rem);
  }
}
div.scheduler-editor-header h1.scheduler-editor-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
div.scheduler-editor-header button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--nylas-base-900);
}
div.scheduler-editor-header button:hover, div.scheduler-editor-header button:active {
  color: var(--nylas-primary);
  background-color: transparent;
}
div.scheduler-editor-header button:disabled {
  cursor: not-allowed;
}
div.scheduler-editor-header div.language select-dropdown::part(sd_dropdown-button) {
  border: none;
  padding: 4px;
  margin-right: 8px;
}
div.scheduler-editor-header div.language select-dropdown::part(sd_dropdown-button):hover {
  outline: none;
  color: var(--nylas-primary);
}
div.scheduler-editor-header div.language select-dropdown::part(sd_dropdown-content) {
  min-width: 132px;
}
@media screen and (max-width: 768px) {
  div.scheduler-editor-header div.language select-dropdown::part(sd_dropdown-content) {
    width: -webkit-fill-available;
    width: fill-available;
    width: -moz-available;
  }
}

nylas-select-event-type {
  height: inherit;
  width: calc(924px + 2rem);
}
@media screen and (max-width: 768px) {
  nylas-select-event-type {
    width: auto;
  }
}

nylas-editor-tabs,
nylas-editor-tabs-group {
  width: auto;
  height: inherit;
}
nylas-editor-tabs .row,
nylas-editor-tabs-group .row {
  display: flex;
  gap: 1rem;
}
nylas-editor-tabs .composable,
nylas-editor-tabs-group .composable {
  height: inherit;
  overflow: auto;
}
nylas-editor-tabs nylas-event-info div[slot=inputs],
nylas-editor-tabs nylas-event-limits div[slot=inputs],
nylas-editor-tabs-group nylas-event-info div[slot=inputs],
nylas-editor-tabs-group nylas-event-limits div[slot=inputs] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: var(--nylas-base-0);
  border: 1px solid var(--nylas-base-200);
  border-radius: 5px;
  color: var(--nylas-base-900);
  max-width: fit-content;
  align-self: center;
}

.login-required {
  height: inherit;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: var(--nylas-base-25);
  border-radius: var(--nylas-border-radius-2x);
}
.login-required .login-error-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: var(--nylas-error-50, #fef2f2);
  border: 1px solid var(--nylas-error-200, #fecaca);
  border-radius: 5px;
  color: var(--nylas-error-700, #b91c1c);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.login-required .login-error-banner svg {
  flex-shrink: 0;
  color: var(--nylas-error-500, #ef4444);
}
.login-required p {
  margin: 0 0 1rem;
}
.login-required .microsoft-button,
.login-required .google-button {
  height: 48px;
  border: 1px solid var(--nylas-base-300);
  border-radius: var(--nylas-border-radius-2x);
  font-size: 16px;
  line-height: 24px;
  padding: 0 1rem;
  background-color: var(--nylas-base-0);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  margin-bottom: 1rem;
  background-color: var(--nylas-base-0);
  border: 1px solid var(--nylas-base-200);
  border-radius: 5px;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  color: var(--nylas-base-900);
}
.login-required .microsoft-button:hover,
.login-required .google-button:hover {
  background-color: var(--nylas-base-25);
}
.login-required .microsoft-button:hover,
.login-required .google-button:hover {
  background-color: var(--nylas-base-25);
}
.login-required .other-provider-button {
  height: 48px;
  border: 1px solid var(--nylas-base-300);
  border-radius: var(--nylas-border-radius-2x);
  font-size: 16px;
  line-height: 24px;
  padding: 0 1rem;
  background-color: var(--nylas-base-0);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  border: 0;
  background-color: var(--nylas-base-0);
  height: 48px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  justify-content: center;
  gap: 0.25rem;
  align-items: center;
  color: var(--nylas-base-900);
}
.login-required .other-provider-button:hover {
  background-color: var(--nylas-base-25);
}
.login-required .other-provider-button svg {
  transform: rotate(180deg);
}
.login-required .other-provider-button:hover {
  background-color: var(--nylas-base-25);
}
.login-required .disclaimer-text {
  font-size: 0.75rem;
  color: var(--nylas-base-600);
  align-self: center;
}
@media screen and (max-width: 768px) {
  .login-required {
    height: auto;
  }
}

.list-configurations {
  padding: 2rem;
  height: inherit;
  background: var(--nylas-base-25);
  border-radius: var(--nylas-border-radius-2x);
}
.list-configurations nylas-list-configurations {
  height: inherit;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .list-configurations {
    height: auto;
    padding: 2rem 1rem;
  }
}