﻿
.statistic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0px;
}

.statistic-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto; /* Etwas Abstand für die Wirkung des Schattens */
    text-align: center;
    background-color: #02407D;
    font-size: 14px;
    border: 1px solid #666;
    color: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), /* Dunkler, deutlicher Schatten */
    0 0 20px rgba(0, 117, 190, 0.4); /* Leichter blauer Glow */
}

    .statistic-table thead {
        background-color: #02407D;
        color: #FFFFFF;
        border-bottom: 1px solid #000;
    }

    .statistic-table .table-title {
        background-image: linear-gradient(0deg, #0075BE 0%, #190A46 100%);
        font-size: 20px;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        border-bottom: 1px solid #000;
        border-color: #000;
        height: 40px;
    }

    /* Abrundung der äußeren Ecken */
    .statistic-table thead tr:first-child td:first-child {
        border-top-left-radius: 15px;
    }

    .statistic-table thead tr:first-child td:last-child {
        border-top-right-radius: 15px;
    }

    .statistic-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 15px;
    }

    .statistic-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 15px;
    }

    .statistic-table tbody tr {
        background-color: #FFFFFF;
        color: #000;
        border-bottom: 1px solid #000;
    }

