.RichTextEditor_editorContainer__iISNK {
  position: relative;
}

.RichTextEditor_fillHeight__VW7Ns {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.RichTextEditor_fillHeight__VW7Ns .ProseMirror {
  flex: 1;
  height: 100%;
  min-height: 300px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.RichTextEditor_fillHeight__VW7Ns .ProseMirror > * {
  margin-bottom: 1em;
}

/* Additional styling for editor */

.ProseMirror {
  padding: 16px;
  border-radius: 4px;
  outline: none;
  background: white;
}

.ProseMirror p {
  margin: 0.5em 0;
}

.ProseMirror img {
  max-width: 100%;
  height: auto;
} 
:root {
  --app-header-height: 65px;
}

/* Google Autocomplete */

.pac-container {
  border-radius: 4px;
  margin-top: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  padding: 8px 0;
  z-index: 1300;
}

.pac-item {
  padding: 8px 16px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.pac-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.pac-item-query {
  font-size: 14px;
}

.MuiAutocomplete-tag {
  margin: 0 !important;
}

.admin-rich-text-editor {
  .tiptap {
    height: 100% !important;

    &:hover {
      background-color: #fff;
    }
  }
}

.tiptap {
  height: calc(100vh - 400px);
  outline: none !important;
  overflow-y: auto;
  border-radius: 5px;
  padding: 15px;
  color: #000 !important;
  transition: background-color 0.2s ease-in-out;

  &:focus {
    background-color: #fff !important;
  }

  &:hover {
    background-color: rgba(0, 0, 0, 0.03) !important;
  }

  :first-child {
    margin-top: 0;
  }

  ul,
  ol {
    padding: 0 1rem;
    margin: 1.25rem 1rem 1.25rem 0.4rem;

    li p {
      margin-top: 0.25em;
      margin-bottom: 0.25em;
    }
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.1;
    margin-top: 2.5rem;
    text-wrap: pretty;
  }

  h1,
  h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4,
  h5,
  h6 {
    font-size: 1rem;
  }

  blockquote {
    border-left: 3px solid var(--gray-3);
    margin: 1.5rem 0;
    padding-left: 1rem;
  }
}

.jobseeker-experience-editor .tiptap {
  height: 150px !important;
}

@media (prefers-color-scheme: dark) {
  .tiptap {
    color: #fff;

    &:focus {
      background-color: rgba(255, 255, 255, 0.03) !important;
    }

    &:hover {
      background-color: rgba(255, 255, 255, 0.03);
    }
  }
}

/**
 * Google Map Container
 */

[data-testid='map'] > div {
  border-radius: 8px;
}


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