/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */

.firebase-emulator-warning {
  display: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Tribute Autocomplete Styles */
.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-width: 300px;
  max-height: 250px;
  overflow: auto;
  display: block;
  z-index: 100;
  background-color: #1a2e26;
  color: #ecfdf5;
  border: 1px solid #065f46;
  border-radius: 0.75rem;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 30%),
    0 4px 6px -2px rgb(0 0 0 / 10%);
  margin-top: 2px;
}

.tribute-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tribute-container li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.smart-input-editable {
  outline: none;
  transition: all 0.2s ease;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

[contenteditable='true']:empty::before {
  content: attr(placeholder);
  color: #9ca3af;
  pointer-events: none;
  display: block;
}

.tribute-container li.highlight {
  background-color: #10b981;
  color: white;
}

.tribute-container li:first-child {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.tribute-container li:last-child {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}



/* Contenteditable Placeholder */
.smart-input-editable[contenteditable]:empty::before {
  content: attr(placeholder);
  color: #9ca3af;
  pointer-events: none;
  display: block;
}

/* Month Header */
.capitalize {
  text-transform: capitalize;
}


