.result {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding: 15px;
    margin: auto;
}


#search-by-name , .remove {
    width: 100%;
    height: 40px;
    margin: 0;
    font-size: 1rem;
}

.remove {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*toggle button*/
input[type="checkbox"] {
    position: relative;
    width: 45px;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    background: #cccccc;
    border-radius: 2rem;
    cursor: pointer;
    display: inline-block;
}
  
input[type="checkbox"]::before {
    content: "";
    width: 18px;
    height: 18Px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    bottom: 4px;
    left: 4px;
    transition: 0.5s;
}

input[type="checkbox"]:checked::before {
    transform: translateX(18px);
    background: #fff;
}
  
input[type="checkbox"]:checked {
    background: #0F5DF4;
}


.bold {
    font-weight: bold;
}

.top {
    font-size: 12px;
    margin: 20px;
}


/*table*/
table.GeneratedTable {
    width: 100%;
    color: #212529;
    font-size: 1rem;
    overflow-x:auto;
}
  
table.GeneratedTable td, table.GeneratedTable th {
    padding: 0.75rem;
}
  
table.GeneratedTable thead {
    background-color: #172E58;
    color: white;
}

table.GeneratedTable tbody > tr {
    transition: transform 0.4s;
}

table.GeneratedTable tbody > tr:hover {
    box-shadow: rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: scale(1.04); 
}

/*chart*/
#line-chart {
    height: 100%;
    width: 100%;
}
