/* box score pods */

.box-score-pods .container-fluid .slick-list .slick-track{
    padding-bottom:15px;
}

.match-container {
    width: 100%;
    max-width: 800px;
    background: #264796;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 5px 3px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0px 4px 5px 3px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 4px 5px 3px rgba(0,0,0,0.7);
    color:#fff;
    cursor:grab;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: bold;
    text-align:center;
    border-radius: 20px 20px 0 0;
    background:#ea1f25;
}

.match-info {
    display: flex;
    flex-direction: column;
}

.match-number {
    font-size:14px;
    transform:translateX(-10px);
}

.league-group {
    text-align:center;
    padding:10px;
}

.match-hour {
    text-align:center;
    padding:10px;
}

.teams-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding:0 20px;
}

.team-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 1));
}

.team-name {
    padding-top:10px;
    font-weight: bold;
}

.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-bottom:70px;
}

.score {
    font-size: 35px;
    font-weight: bold;
}

.stadium {
    padding-bottom: 15px;
    text-align:center;
}

@media (max-width:992px) {
    .team-logo {
        width:50px;
        height:50px;
    }
    
    .team-name {
        font-size: 15px;
    }

    .score {
        font-size: 25px;
    }
}

/* bathmologikos pinakas */ 

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    border:none;
}

.standings-table th,
.standings-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    border-right:none;
}

.standings-table th:first-child,
.standings-table td:first-child {
    width: 60px;
    text-align: center;
}

.standings-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.standings-table tbody tr:hover {
    background-color: #f8f9fa;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
}

.team-cell img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.team-cell span {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .standings-table th,
    .standings-table td {
        padding: 8px;
        font-size: 14px;
    }

    .team-cell {
        padding: 8px;
    }

    .team-cell img {
        width: 20px;
        height: 20px;
    }
}