body {
    margin: 0;
    font-family: Arial, sans-serif;
}

command {
    color: red;
    font-weight: bold;
}

.container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}


.content {
    width: 50%;
    margin: 0 auto;
    text-align: left;
}

.top-bar {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.top-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top-bar ul li {
    display: inline;
    margin-right: 20px;
}

.top-bar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #77c2a7;
    color: white;
    cursor: pointer;
}
.highlight {
    background-color: #d3f4e0; /* Choose a color that stands out, like a bright yellow */
    font-weight: bold; /* Optional: makes the text bold */
}

@media screen and (max-width: 600px) {
    .container {
        width: 100%;
    }

    table {
        font-size: 12px;
    }
}
