/* Custom */

.tableau-crawler-wrapper {
    border: 1.5px solid #ccdff5;
    border-radius: 12px;
    overflow: hidden;
    max-width: 90%;
}

.tableau-crawler {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Segoe UI', sans-serif;
}

.tableau-crawler th,
.tableau-crawler td {
    border-right: 1.5px solid #ccdff5;
    border-bottom: 1.5px solid #ccdff5;
    border-top: none;
    border-left: none;
}

.tableau-crawler th:last-child,
.tableau-crawler td:last-child {
    border-right: none;
}

.tableau-crawler tbody tr:last-child td {
    border-bottom: none;
}

.tableau-crawler thead th {
    background: linear-gradient(90deg, #0057b8 0%, #0099e6 100%);
    color: #fff;
    padding: 9px 12px;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.tableau-crawler tbody td {
    padding: 9px 12px;
    font-size: 12.5px;
    color: #1a1a2e;
    vertical-align: middle;
}

.tableau-crawler tbody td:first-child {
    font-weight: 600;
}

.tableau-crawler tbody tr:nth-child(even) td {
    background: #f7fafd;
}

.tableau-crawler tbody tr:hover td {
    background: #e8f2fc;
    transition: background 0.15s ease;
}