body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.controls {
    text-align: center;
    margin-bottom: 20px;
}

.controls select {
    padding: 10px;
    margin: 0 5px 10px 5px;
    width: 200px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.controls button {
    padding: 10px 20px;
    background: #2ecc71;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.3s;
}

.controls button:hover {
    background: #27ae60;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 400px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

th {
    background-color: #2ecc71;
    color: white;
    font-weight: bold;
}

.star-rating {
    color: #f1c40f;
    font-size: 18px;
}

.score {
    font-weight: bold;
    color: #27ae60;
}

@media (max-width: 768px) {
    .controls select {
        width: 100%;
        margin-bottom: 10px;
    }
    .controls button {
        width: 100%;
    }
    table {
        font-size: 14px;
    }
}