.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-form .form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.search-form .form-row .btngroup {
    margin: 0;
}

.search-form label {
    color: #444;
}

.search-form input {
    width: 40%;
}

.search-form #caseSensitive{
    width: 15px;
    height: 15px;
}

.search-form #caseSensitive:checked {
    accent-color: #444;
}

.tableUser .content-checkbox {
    width: 15px;
    height: 15px;
}
.tableUser .content-checkbox:checked {
    accent-color: #444;
}

.content-title {
    text-align: center;
    color: #444;
}

.rules-table {
    width : 90%;
    margin: 0 auto;
}

/* Wrapper pour afficher l'intégralité du tableau */
.search-section {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.search-section th, 
.search-section td {
    padding: 8px;
    text-align: left;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



/* Style spécifique pour le tableau des règles de comparaison */
.rules-comparison-table {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


.rules-comparison-table thead th {
    padding: 12px 15px;
    text-align: center;
    font-weight: bold;
}

.rules-comparison-table tbody td {
    padding: 10px 15px;
    vertical-align: top;
    word-break: break-word;
}

