body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/60/Cricket_pitch_with_ball.jpg') no-repeat center center/cover;
    color: white;
}

.dashboard {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    width: 90%;
    max-width: 800px;
}

h1, h2, h3 {
    color: yellow;
}

table {
    width: 100%;
    margin: 10px 0;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid white;
}

th, td {
    padding: 8px;
}

.controls input, .controls button {
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
    border: none;
}

.controls button {
    background: #28a745;
    color: white;
    cursor: pointer;
}

.controls button:hover {
    background: #218838;
}
