body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

#searchInput {
    width: 40%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
#searchInput:hover {
    border: 1px solid #00c975;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    width: 20%;
    text-align: center;
}

th {
    background-color: rgb(158, 45, 73);
    font-size:12px;
    color: white;
}

th.motor {
    width: 20%;
    text-align: center;
}

td {
    vertical-align: middle;
    font-size:10px;
}

td i {
    margin-right: 8px;
}

tr:hover {
    background-color: #f1f1f1;
}

.highlight {
    background-color: yellow;
}

/* New CSS for scrollable table body */
tbody {
    display: block;
    max-height: 500px;
    overflow-y: auto;
}

thead, tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}


h2 {
    font-size: 9px;
    color: red;
    text-align: center;
    margin-top: 10%;
}

@media (max-width:767px) {
    body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px 0px;
    border-radius: 0px;
    box-shadow: none;
}
#searchInput {
    width: 40%;
    padding: 10px;
    margin-bottom: 20px;
    margin-left:20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
}

}