:root {
    --gray: #E5E5E5;
    --dark-gray: #333333;
    --logo-blue: #003399;
    --darker-blue: #003399;
    --lighter-blue: #6698CB;
    --even-lighter-blue: #B1D0F0;
    --lightest-blue: #D5E8FB;
    --dark-orange: #FF6600;
    --light-orange: #FFCC99;
    --light-orange-alt: #FF9934;
}
.comments-table td:first-child{
    background: var(--light-orange-alt);
}

/* Generators */

.editor-container {
    width: 810px;
    max-width: 100%;
    background-color: #E0E0E0;
    border: 1px solid #000000;
    margin: 0 auto 10px;
    padding: 10px;
    font-family: 'Verdana', sans-serif;
    font-size: 11px;
}
.editor-container h3, 
.editor-container h4 {
    background-color: #333333;
    color: #FFFFFF;
    padding: 3px 5px;
    margin: 5px 0;
    font-size: 12px;
    text-transform: uppercase;
}
.editor-container .editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.editor-container .editor-header #selector-btn {
    display: flex;
    align-items: center;
    background-color: #333333;
    border: none;
    color: #FFFFFF;
    font-size: 12px;
    text-transform: uppercase;
}
.editor-container .editor-header #selector-btn:hover {
    background: #666666;
}
.editor-container .editor-header #selector-btn .icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}
.editor-container p {
    margin: 5px 0 2px 0;
    font-weight: bold;
}
.editor-container textarea {
    width: 100%;
    border: 1px inset #000000;
    background-color: #FFFFFF;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 2px;
    box-sizing: border-box;
}
.editor-container .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
#color-picker-box {
  position: absolute;
  background: #FFFFFF;
  border: 2px solid #333;
  padding: 10px;
  z-index: 9999;
  border-radius: 8px;
  width: 220px;
}
#color-picker-box input[type="color"] {
  width: 100%;
  height: 40px;
  border: none;
  margin-bottom: 10px;
}
.rgba-controls input {
  width: 100%;
}
#autocomplete-box {
  position: absolute;
  background: #111;
  border: 1px solid #333;
  max-height: 150px;
  overflow-y: auto;
  z-index: 9999;
  width: 250px;
  font-family: monospace;
}
.autocomplete-item {
  padding: 5px;
  cursor: pointer;
  color: #fff;
}
.autocomplete-item:hover {
  background: #333;
}
