  .qmAddNewRowBtn, 
  .qmRemoveRowBtn{
    color: white;
    background: #4fafe3;
  }

  .container{
    padding-left: 2em;
  }
  /* Create a custom checkbox */
  .checkmark {
    border: 1px solid #4fafe3;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #4fafe3;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  /* Create a custom checkbox */
  span.checkmark {
    position: absolute;
    top: 0.2em;
    left: 0;
    height: 1.25em;
    width: 1.25em;
    opacity: 1;
  }

  /* Style the checkmark/indicator */
  .container .checkmark:after {
    border: solid white;
    border-width: 0 2px 2px 0;
  }

:focus{
    outline: 1px solid #4fafe3;
}

input[type="radio"]:checked {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #4fafe3;
    border: 1px solid white;
}  

.wp-block-quotation-manager-form form{
    border: 2px dashed #4fafe3;
    padding: 1rem;
}

label{
    position: relative;
    top: -1px;
}
span.title{
    padding: 0.25rem 1rem;
    margin-left: 0.5rem;
    background-color: #4fafe3;
    color:white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    letter-spacing: 0.05rem;
}
.wp-block-quotation-manager-form input[type=submit]{
    background-color: #4fafe3;
    color:white;
    border: 1px solid white;
    text-decoration: underline;
    text-underline-position: under;
    outline: white;
}