/* Genel ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f3f4f6;
    padding: 20px;
}

h1, h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Puan Tablosu Stili */
.puan-tablosu-container,
.mac-fiksturu-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
    overflow-x: auto; /* Yatay kaydırma çubuğu ekler */
}

.puan-tablosu, .mac-fiksturu {
    width: 100%;
    min-width: 600px; /* Küçük ekranlarda yatay kaydırma için minimum genişlik */
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.puan-tablosu th, .puan-tablosu td, .mac-fiksturu th, .mac-fiksturu td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.puan-tablosu th, .mac-fiksturu th {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.puan-tablosu tbody tr:nth-child(even), .mac-fiksturu tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.puan-tablosu tbody tr:hover, .mac-fiksturu tbody tr:hover {
    background-color: #f1f1f1;
}

.puan-tablosu td, .mac-fiksturu td {
    color: #333;
}

.puan-tablosu td:first-child, .mac-fiksturu td:first-child,
.puan-tablosu th:first-child, .mac-fiksturu th:first-child {
    text-align: center;
    width: 50px;
}

.puan-tablosu td:last-child, .mac-fiksturu td:last-child,
.puan-tablosu th:last-child, .mac-fiksturu th:last-child {
    font-weight: bold;
}

/* Maç Fikstürü Kısmı */
.mac-fiksturu-container {
    margin-bottom: 20px;
}

/* Daha Fazla Yükle Butonu */
#dahaFazla {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#dahaFazla:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    #dahaFazla {
        padding: 8px 16px;
        font-size: 14px;
    }

    .puan-tablosu-container, .mac-fiksturu-container {
        padding: 0 5px; /* Mobil cihazlar için sağ-sol boşluk ekler */
    }

    .puan-tablosu th, .puan-tablosu td, .mac-fiksturu th, .mac-fiksturu td {
        padding: 10px 8px;
        font-size: 14px;
    }
}
