body
{
    margin: 0;
}

#mtColor
{
    position: absolute;
}

/* Style the color input field */
input[type="color"] {
    width: 80px;
    height: 80px;
    border: 0px solid white;
    border-radius: 0px 5px 5px 5px;
    transition-duration: 100ms;
  }
  
  /* Set the color of the text and border when the input is focused */
  input[type="color"]:hover, input[type="color"]:focus {
    border: 3px solid white;
  }
  
  /* Hide the default arrow button for the input field */
  input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  
  input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
  }