.elementor-47064 .elementor-element.elementor-element-0dd8e36{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-9e359cd *//* CSS pour le tableau des verbes irréguliers */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* En-tête du tableau */
thead {
    background-color: #0031FE;
    color: white;
}

thead th {
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}

/* Corps du tableau */
tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s ease;
}

tbody td {
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

/* Première colonne (numéro) */
tbody td:first-child {
    font-weight: bold;
    color: #0031FE;
    text-align: center;
    width: 50px;
}

/* Colonnes des verbes */
tbody td:nth-child(2),
tbody td:nth-child(3),
tbody td:nth-child(4) {
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

/* Colonne traduction */
tbody td:last-child {
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    table {
        font-size: 12px;
    }
    
    thead th,
    tbody td {
        padding: 8px 6px;
    }
    
    tbody td:first-child {
        width: 40px;
    }
}/* End custom CSS */