body{
  background-color: #fdfdfd;
  padding: 0;
  margin: 0;
}

.app {
  text-align: center;
  padding: 0;
  height: 100vh;
}

.canvas{
  background-color: black;
  height: 300px;
  padding: 0 10px;
}

.canvas canvas{
  width: 400px;
  height: 300px;
}

.select-box{
  margin: 16px 0;
}

.veyjha{
  height: 26px;
  margin: 0px 3px;
  border: 1px solid lightgray;
  padding: 6px 10px;
  outline: none;
  width: 173px;
  border-radius: 50px;
  background-color: white;
  display: inline-flex;
  overflow: hidden;
}

.veyjha.vfbed{
  width: 60px;
}

select {
  width: 100%;
  outline: none;
  border: none;
  background-color: white;
}

.audio-controls {
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.audio-controls a {
    border: 1px solid lightgray;
    font-size: 18px;
    background: white;
    border-radius: 50px;
    margin: 0 5px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 3px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

a.record.active,
a.record:hover{
  background-color: rgba(0, 128, 0, 0.8);
  color: white;
  border-color: rgba(0, 128, 0, 0.6);  
}

a.stop.active,
a.stop:hover{
  background-color: rgba(255, 0, 0, 0.8);
  color: white;
  border-color: rgba(255, 0, 0, 0.6);  
}

a.download.active,
a.download:hover{
  background-color: rgba(0, 0, 255, 0.8);
  color: white;
  border-color: rgba(0, 0, 255, 0.6);  
}


.audio-controls button {
  margin: 0px 5px;
}

#msg {
  visibility: hidden;
  color: red;
  font-weight: bold;
  font-size: 16px;
  font-family: auto;
  padding: 5px 10px;
}

@media (max-width:500px) {
  .canvas canvas{
    width: 100%;
  }
}

#results {
  padding: 0;
}

#results li{
  list-style: none;
}