/* Table_1 premier style de tableau utilisé pour le panier */
.table_1 {
    width: 100%;
    border-collapse: collapse;
    color: #c4bebe;
    border: 2px solid rgba(92,184,63,0.25);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(240,192,96,0.08), 0 0 18px rgba(92,184,63,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}
.table_1 thead {
    background: linear-gradient(rgba(8,12,6,0.95), rgba(12,18,10,0.95));
    border-bottom: 2px solid rgba(92,184,63,0.25);
}
.table_1 th {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 1.1rem);
    padding: clamp(8px, 0.9vw, 14px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0c060;
    width: 25%;
    white-space: nowrap;
}
.table_1 td {
    text-align: center;
    font-size: 2vw;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s ease;
    height: auto;
    white-space: nowrap;
}
.table_1 tbody tr:hover { background: rgba(92,184,63,0.06); }


/* table_2 second style utilisé */
.table_2 {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(160deg, rgba(12,18,8,0.88), rgba(8,12,6,0.88));
    backdrop-filter: blur(6px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.table_2 thead {
    background: linear-gradient(90deg, #1c4810, #224e14);
}
.table_2 th {
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    padding: 0.75vw;
    letter-spacing: 0.1em;
    font-weight: normal;
    color: #d4e8c0;
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    white-space: nowrap;
}
.table_2 td {
    padding: 1vw;
    font-size: 1.25vw;
    transition: background 0.2s ease;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
}
.table_2 tbody tr:hover { background: rgba(92,184,63,0.06); }


/* Table 3 simple utilisée ne contenant que des checkbox, utilisée pour la sélection de cartes d'une variante d'item dans la formulaire d'ajout d'une espece */
.table_3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
    margin-top: 16px;
    font-family: "Saira Condensed", sans-serif;
    color: #f0c060;
}
.table_3 thead th {
    background: rgba(12,12,12,0.9);
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(92,184,63,0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
}
.table_3 tbody td:first-child {
    background: rgba(28,32,20,0.85);
    font-weight: 700;
    padding: 10px;
    border: 1px solid rgba(92,184,63,0.2);
    border-radius: 6px 0 0 6px;
    color: rgba(255,255,255,0.85);
}
.table_3 tbody td:not(:first-child) {
    background: rgba(12,14,10,0.85);
    text-align: center;
    padding: 8px;
    border: 1px solid rgba(92,184,63,0.15);
    border-radius: 4px;
}
.table_3 tbody input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #5cb83f;
    cursor: pointer;
}
.table_3 tbody td:hover { background: rgba(30,40,24,0.9); }




@media (max-width: 765px) {
    .table_1 th { width: auto; }
    .table_1 td { font-size: 3vw; }

    .table_2 td { font-size: 3vw; padding: 1vw 2vw; }
}