.search {
    position: relative;
    left: 420px;
    top: 10px;
}

.headers {
    display: flex;
    justify-content: space-between;

    width: 800px;
    position: relative;
    top: 70px;
    left: 200px;
}

#headerLine {
    position: relative;
    top: 70px;
}

.application {
    list-style-type: none;
    position: relative;
    left: 130px;
    display: flex;

}

.allApplications {
    position: relative;
    top: 72px;
}

.dateTime {
    display: flex;
    position: relative;
    left: 150px;
    
}
.time{
    position: relative;
    left: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    /*display side by side and also have the flexibility to set the width,height,padding and margin*/
    width: 60px;
    height: 34px;
}

.toggle-switch input[type="checkbox"] {
    /*remove checkbox*/
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d00a0a;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    /*don't have to add additional html tag, can just use before*/
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}


input[type="checkbox"]:checked+.slider {
    background-color: #007024;
}

input[type="checkbox"]:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    /*move 26px to the right*/
    transform: translateX(26px);
}

.toggle-switch-label {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.switchLive {
    position: relative;
    left: 300px;
}

.runButton {
    position: relative;
    left: 450px;
    bottom: 10px;
    border-radius: 40px;
    height: 50px;
    width: 150px;
   
    
    
}
.viewButton{
    position: relative;
    left: 450px;
    bottom: 10px;
    border-radius: 40px;
    height: 50px;
    width: 150px;
}

.wholeBox{
    border: black 3px solid;
    height: auto;
  padding-bottom: 60px;
    position: relative;
    top: 70px;
    border-radius: 20px;
   
    
}
.individualLine{
    width: 1200px;
    position: relative;
    right: 50px;
}

