/* Table globale */
#myTable {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Header de la table */
#myTable th, #myTable td {
    padding: 12px 15px;
    text-align: left;
}

/* Lignes alternées */
#myTable tr:nth-child(even) {
    background-color: #ffffff;
}

#myTable tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover */
#myTable tr:hover {
    background-color: #e0eaf0;
}

/* Titres en gras */
#myTable td b {
    color: #333333;
}

/* Petits textes */
#myTable td small {
    color: #555;
    font-size: 0.9em;
}

/* Input recherche */
#myInput {
    width: 50%;
    padding: 10px 15px;
    margin: 20px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1em;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

/* Images dans la table */
#myTable img {
    vertical-align: middle;
    height: 24px;
}
