body {
    background-color: #15191c !important;
    font-family: "Proxima Nova", sans-serif;
    color: #8b949a;
    letter-spacing: 0.05em; 
  }

  .color-picker-panel {
    background: #1f232a;
    width: 300px;
    border: 2px solid #364347;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  }

  #title {
    text-align: center;
  }

  .panel-row {
    position: relative;
    margin: 0 10px 10px;
  }
  .panel-row:first-child {
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .panel-row:after {
    content: '';
    display: table;
    clear: both;
  }
  .panel-header {
    background: #15191c;
    padding: 8px;
    margin: 0 -10px 10px;
    text-align: center;
  }
  .swatch {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #ccc;
    border-radius: 4px;
    margin-left: 4px;
    margin-bottom: 4px;
    box-sizing: border-box;
    border: 2px solid #364347;
    cursor: pointer;
  }
  .default-swatches {
    width: 212px;
  }
  .default-swatches .swatch:nth-child(6n + 1) {
    margin-left: 0;
  }
  .color-cursor {
    border-radius: 100%;
    background: #ccc;
    box-sizing: border-box;
    position: absolute;
    pointer-events: none;
    z-index: 2;
    border: 2px solid #fff;
    transition: all 0.2s ease;
  }
  .color-cursor.dragging {
    transition: none;
  }
  .color-cursor#spectrum-cursor {
    width: 30px;
    height: 30px;
    margin-left:- 15px;
    margin-top: - 15px;
    top: 0;
    left: 0;
  }
  .color-cursor#hue-cursor {
    top: 0;
    left: 50%;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    margin-left: -10px;
    pointer-events: none;
  }
  .spectrum-map {
    position: relative;
    width: 212px;
    height: 200px;
    overflow: hidden;
    margin-left: 1rem;
  }
  #spectrum-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
  }
  .hue-map {
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 15px;
    width: 10px;
  }
  #hue-canvas {
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ccc;
  }
  .button {
    background: #2a3137;
    border: 0;
    border-radius: 4px;
    color: #8b949a;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    outline: none;
    cursor: pointer;
    padding: 4px;
  }
  button:active {
    background: #262c31;
  }
  .button.eyedropper {
    position: absolute;
    right: 0;
    top: 0;
    width: 68px;
    height: 68px;
    display: block;
  }
  .button.add-swatch {
    display: block;
    padding: 6px;
    width: 200px;
    margin: 10px auto 0;
  }
  .button.mode-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 68px;
    height: 40px;
  }
  .value-fields {
    display: none;
    align-items: center;
  }
  .value-fields.active {
    display: flex;
  }
  .value-fields .field-label {
    margin-right: 6px;
  }
  .value-fields .field-input {
    background: #15191c;
    border: 1px solid #364347;
    box-sizing: border-box;
    border-radius: 2px;
    line-height: 38px;
    padding: 0 4px;
    text-align: center;
    color: #8b949a;
    font-size: 1rem;
    display: block;
  }
  .rgb-fields .field-group {
    display: flex;
    align-items: center;
  }
  .rgb-fields .field-input {
    width: 42px;
    margin-right: 10px;
  }
  .hex-field .field-input {
    width: 170px;
  }
  .color-indicator {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #ccc;
  }
  input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* ------------------------------------------
    ---------Responsive CSS ---------
  -------------------------------------------*/
  
  @media only screen and (min-width: 768px) {
    .color-picker-panel {
      width: 280px;
      padding-top: 1rem;
      padding-left: 0rem;
      margin-left: -3.5rem;
      
    }
    .spectrum-map {
      width: 200px;
    }
  }

  @media only screen and (min-width: 920px) {
    .color-picker-panel {
      width: 280px;
      padding-top: 1rem;
      padding-left: 0rem;
      margin-left: 1rem;
    }
    .spectrum-map {
      width: 200px;
    }
  }

  @media only screen and (min-width: 992px) {
    .color-picker-panel {
      width: 310px;
      padding: 1rem 1rem 2rem;
    }
  }

  @media only screen and (min-width: 1090px) {
    .color-picker-panel {
      width: 310px;
      margin-left: 2rem;
    }
  }

  @media only screen and (min-width: 1200px) {
    .color-picker-panel {
      width: 320px;
      padding: 1rem 1rem 2rem;
      margin-left: 0rem;
    }
    .spectrum-map {
      width: 225px;
    }
    .hue-map {
      right: 0px;
    }
  }