.amtbutton
{
    background-color: #007bff;
    color:white;
    border: 0px solid #c00;
}
.amtbutton:hover
{
    background-color: #007bffb6;
}

.radio-toolbar {
    margin: 10px;
  }
  
  .radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  
  .radio-toolbar label {
      display: inline-block;
      background-color: #ffffff;
      padding: 2px 2px 1px 5px;
      border: 1px solid rgb(3, 25, 34);
      color: rgb(44, 6, 6);
      width:60px;
      text-align: center;
      
  }
  
  .radio-toolbar label:hover {
    background-color: #007bff;
  }
  
  .radio-toolbar input[type="radio"]:checked + label {
      background-color: #007bff;
      color:white;
      
  }
  
