.search_bar{
    width: 80%;
    height: 75px;
    display: flex;
    justify-content: center;
    /* border: 1px solid blue; */
    margin-left: 10%;
    margin-top: 1%;
}

.search_bar input[type=text]{
    width: 30%;
    height: 30px;
    align-self: center;
    border-radius: 10px;
    background-color: rgb(78, 78, 78);
    border: none;
    font-size: 15px;
}
.search_bar img:hover{
    filter: invert();
}
.search_bar img{
    height: 25px;
    align-self: center;
    border: none;
    position: relative;
    right: 30px;
}

#search{
    /* display: flex; */
    flex-direction: column;
    background-image:linear-gradient(180deg, rgba(10, 0, 151, 0.3) .2%, rgba(0,0,0,0)10%);

}
/* #search .body{
    width: 80%;
    margin-left: 10%;
    border: 2px solid black;
    border-radius: 10px;
    background-color: rgb(30,30,30, .3);
} */
#search .body{
    width: 84%;
    /* min-height: 100%; */
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    background-color: rgb(19, 19, 19, .3);
    margin-left: calc(8% - 2px);
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}


#websearch{
    align-self: center;
    display: flex;
    appearance: auto;
    border: rgba(10, 0, 151, 1) 1px solid;
    width: 20px;
    height: 20px;
    
}

.stream_info{
    margin-left: 1em;
}

.stream{
    background-color: rgba(151, 144, 255, 0.1);
}

/* slider button */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-div{
    width: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
}

#yt_stream_state{
    color: rgb(158, 158, 158);
    font-weight: 600;
    font-size: large;
    margin-left: 1em;
}