/* Style the title */
  .ductulatorHeading {
    font-size: 1.5em;
    margin: .5em 0 .75em;
    text-align: center;
  }

/* Style the main div */
  .ductulatorContent {
    background-color: rgb(216, 216, 216);
    padding: 0.5em;
    border: 2px solid rgb(80, 80, 255);
    border-radius: 15px;
    margin: 0.5em;
    text-align: center;
  }
  
/* Style the buttons, svg, input and checkbox*/
  .ductulatorButton {
    padding: 0.25em;
    border: 2px solid rgb(80, 80, 255);
    
    border-radius: 10px;
    margin: 2px;
    box-sizing: border-box;
    width: 100px;
    min-height: 20px;
  }

  .ductulatorButton:focus {
    outline: none;
    border: 2px solid red;
    background-color: rgb(255, 255, 255);

  }

  .ductulatorButton:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid red;
  }

  .ductulatorFakeButton {
    padding: 0.5em;
    border: 2px solid rgb(80, 80, 255);
    border-radius: 10px;
    margin: 3px;
    box-sizing: border-box;
    height: 150px;
    width: 220px;
    outline:none;
  }

  .ductulatorInput {
    padding: 0.2em;
    padding-left: 0.6em ;
    /*border: 2px solid rgb(80, 80, 255);*/
    border: none;
    border-radius: 10px;
    margin: 0.3em;
    margin-left: 1.5em;
    box-sizing: border-box;
    width: 100px;
    min-height: 20px;
    outline: none;
  }

  .ductulatorCheckbox {
    margin: 0.8em;
    margin-left: 1.5em;
    -ms-transform: scale(2); /* IE */
    -moz-transform: scale(2); /* FF */
    -webkit-transform: scale(2); /* Safari and Chrome */
    -o-transform: scale(2); /* Opera */
    transform: scale(2);
  }

/* Style the svg images */
  .ductulatorSVGbutton {
    stroke: rgb(80, 80, 255);
    stroke-width: 2;
    fill: none;
    height: 50px;
    overflow: visible;

  }

  .ductulatorSVGbutton:hover {
    stroke: red;
  }
  .ductulatorButton:focus .ductulatorSVGbutton{
    stroke: red;
  }

/* Style the data table*/
  .ductulatorTable {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;

  }

  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }

  table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }

  table th, table td {
  padding: .625em;
  text-align: center;
  }

  table th {
    font-size: .85em;
    letter-spacing: .1em;
  } 

  .ductulatorTableDiv {
    overflow-x:auto;
    margin-bottom: 2em;
  }
