.customtable {
    width: 100%;
    border-collapse: collapse;
}

.customtable {
    .controls {
        background: white;
        /* padding: 20px; */
        padding: 10px 20px;
        /* margin-bottom: 30px; */
        border-radius: 8px;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
        display: block;
    }

    .controls {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .control {
        margin-bottom: 15px;
        width: 100%;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: black;
    }

    select {
        /* width: 100%; */
        padding: 8px;
        font-size: 16px;   
    }


    /* table {
        width: 100%;
        border-collapse: collapse;
    } */

    .rankingtable {
        display: block;
    }
        
    th,
    td {
        padding: 10px 12px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    th {
        background: #f0f0f0;
        color: black;
    }

    tr:hover {
        background: #fafafa;
    }
    
    tr:hover td {
        color: black;
    }

    td:last-child {
        text-align: left;
    }

    .error {
        color: #f4ae35ff;
    }

    .loading {
        color: #666;
    }
}