body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

table {
    border-collapse: collapse;
    border: 3px solid black;
    border-width: 4px;
    margin-top: 50px;
    width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    font-family: 'Roboto Condensed', serif;
    padding: 5px 15px;
    text-align: left;
    font-size: 12px;
    border: 1px solid black;
    border-width: 1px;
}

th {
    font-family: 'Roboto Condensed', serif;
    font-size: 12px;
    background-color: #4CAF50;
    color: white;
}

td {
    color: #333;
}

td:nth-child(2) {
    background: linear-gradient(to right, #0000FF, #8A2BE2);
    color: white;
}

td:nth-child(3) {
    background: linear-gradient(to right, #8A2BE2, #FFFF00);
    color: white;
}
