/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Conteneur des produits sous forme de grille (tout en gardant la table) */
.table-container {
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
    padding: 20px;
}

/* Table stylisée mais avec des cases de produit */
table {
    width: 100%;
    border-collapse: collapse;
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

th {
    background: #333;
    font-weight: bold;
}

/* Stylisation des cellules de la table pour les présenter comme des cartes */
td {
    background: #2b2b2b;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

td:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 255, 100, 0.3);
}

/* Image du produit */
td img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

td img:hover {
    transform: scale(1.1);
}

/* Lien du produit */
td a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #1db954;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

td a:hover {
    background: #1ed760;
}

/* Recherche et filtres */
.filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.search-input {
    width: 300px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #1db954;
    border-radius: 25px;
    background-color: #1e1e1e;
    color: white;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.search-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.search-input:focus {
    border-color: #1ed760;
    background-color: #333;
    outline: none;
}

.filter-select {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #1db954;
    border-radius: 25px;
    background-color: #1e1e1e;
    color: white;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.filter-select:focus {
    border-color: #1ed760;
    background-color: #333;
    outline: none;
}

/* Effet de transition fluide pour le focus et le survol */
.search-input, .filter-select {
    transition: all 0.3s ease;
}

/* Responsivité pour les petits écrans */
@media (max-width: 768px) {
    th, td {
        padding: 10px;
    }
    table {
        font-size: 14px;
    }

    .filters {
        flex-direction: column;
        gap: 15px;
    }

    .search-input {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }
}




.spreadsheet-info {
    background: #1e1e1e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

h2, h3 {
    color: #1db954;
}

ul, ol {
    text-align: left;
    margin: 10px auto;
    padding-left: 20px;
}

.discord {
    color: #1ed760;
    font-weight: bold;
}
