﻿
.winnings-table {
    width: 100%;
    max-width: 600px;
    text-align: center;
    background-color: #02407D;
    font-size: 14px;
    margin: 20px auto; /* Etwas Abstand für die Wirkung des Schattens */
    border: 1px solid #666;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 117, 190, 0.3);
}

.winnings-table thead {
    background-color: #02407D;
    color: white;
}

.table-title {
    background-color: white;
    font-size: 20px;
    color: #024079;
    font-weight: bold;
    padding: 10px;
}

.winnings-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 */
.winnings-table thead tr:first-child td:first-child {
    border-top-left-radius: 15px;
}

.winnings-table thead tr:first-child td:last-child {
    border-top-right-radius: 15px;
}

.winnings-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.winnings-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.winnings-table tbody tr {
    background-color: white;
    color: black;
    border-bottom: 1px solid black;
}
