body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f9f9f9;
    color: #000; 
}

td {
    color: #007bff; 
}

td:nth-child(7) {
    color: green;
}

td:nth-child(8) {
    color: red; 
}

tr:hover {
    background-color: #f1f1f1;
}

td input[type="text"], td input[type="number"] {
    width: 100%;
    border: none;
    background: none;
    font-size: 14px;
}

td input[type="text"]:focus, td input[type="number"]:focus {
    outline: none;
}
