.stats-card {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

#wrap-stats-card-score {
    display: flex;
    justify-content: space-between;
}

.stats-card-scorer {
    width: 48%;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.stats-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
}

.season-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 1rem;
    background-color: white;
}

.stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #e9ecef;
    padding: 0 0.5rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: blueviolet;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

.results-table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef
}

.results-table td {
    vertical-align: middle;
}

.badge {
    --bs-badge-padding-x: 0.45em;
    --bs-badge-padding-y: 0.45em;
    border-radius: 20px;
}

.th-result {
    min-width: 5em;
}

.th-opponent {
    min-width: 5em;
}

.fs-smaller {
    font-size: smaller;
}

footer {
    min-height: 57px;
}

#copy-right {
    padding-top: 16px;
}

.wrap-chart {
    min-height: 700px;
}

.wrap-chart-score {
    max-height: 130px;
}

.wrap-chart-score-media {
    max-height: 130px;
}

.canvas-chart {
    height: 700px;
}

.canvas-chart-score {
    height: 130px;
}

.canvas-chart-score-media {
    height: 130px;
}

@media (width <=768px) {
    footer {
        min-height: 91px;
    }

    #copy-right {
        padding-top: 0px;
    }
}

@media (width <= 560px) {
    .wrap-chart-score-media {
        max-height: 150px;
    }

    .canvas-chart-score-media {
        height: 150px;
    }
}

@media (width <= 450px) {
    #wrap-stats-card-score {
        display: block;
    }

    .stats-card-scorer {
        width: 100%;
    }
}