body {
    background-color: #0d1f2d;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}

th, td {
    padding: 10px;
    text-align: center;
    border: none;
}

th {
    background-color: transparent;
    font-weight: bold;
}

td {
    background-color: transparent;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    padding: 0;
    border: none;
    line-height: 45px;
    height: 45px;
    transition: color 0.2s ease-in-out;
}

td.highlight {
    color: #33ff00;
    box-shadow: none;
    transition: color 0.2s ease-in-out;
}

td.highlight:hover {
    color: #00ff00;
}

tr:not(:first-child) {
    border-top: 2px solid black;
}

tr {
    box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    
}

