.base-line {
    border: 1px solid lightgray;
}

header, .relat, .wrapper{
    position: relative;
}

.wrapper{
    margin: 0 auto;
}

button {
    text-align: center;
    min-width: 150px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    width: 20px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    margin: 20px 10px ;
    padding: 10px; 
}

.mic {
    background-color: #333;
    color: #fff;
}
.remove {
    background-color: salmon;
    color: #fff;
}

.contents {
    position: relative;
    float: left;
    margin: 0 auto;
    min-height: 70vh;
}

.result {
    height: 350px;
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 10px;
}
.recognized-textarea {
    height: 50px;
    width: 50%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 10px;
    overflow: scroll;
}

#recording-state {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 9px;
}
.on {
    background-color: red !important;
}
.off {
    background-color: #ccc !important;
}
.description {
    text-align: center;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;    
    font-size: 15px;
    font-weight: 500;
}
.no {
    display: none;
}

.Button-area {
    display: flex;
    
}

.textareaWrapper{    
    padding: 10px;
    width: 100%;
    height: 100px;
    float: left;
    position: relative;
}
.textareaWrapper textarea, .textareaWrapper button{
    width: 100%;
    margin: 0 auto;
}

.textareaWrapper .first{
    position: relative;
    width: 80%;
    float: left;
}
.textareaWrapper .second{
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
}

.textareaWrapper textarea{
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    border: solid 2px #1E90FF;
    border-radius: 5px;
    font-size: 16px;
    resize: both;
}
.textareaWrapper button{  
    height: 100%;
} 

.playbtn{
    text-align: center;
}

.playbtn img{
    width: 100%;
    height: 100%;
}

.resulttd:hover{
    border: 1px solid darkblue;
}

.resulttd.active{
    border-bottom: 1px solid;
}