@import url('/style/nav.css');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    /* padding: 20px; */
}

.container {
    display: grid;
    gap: 20px;
    margin: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #00796b;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #00796b;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #00796b;
}

.player-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}


@media only screen and (min-width:300px) {
    .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }
}

@media only screen and (min-width:375px) {
    .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }
}

@media only screen and (min-width:768px) {
    .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }
}

@media only screen and (min-width:991px) {
    .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }
}