
/* HeadPage */

div.headerdico {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('../../img/musculation.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid black;
}

div.headerdico h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

/* Conteneur du dictionnaire */
#dico {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Bloc de chaque mot */
.category {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Titre du mot */
.category-name {
    font-weight: bold;
    color: green;
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Description du mot */
.article-count {
    color: black;
    line-height: 1.4;
}

/* Conteneur de la barre de recherche */
.search {
    display: flex;
    justify-content: left;
    margin: 20px 0;
}

/* Champ de recherche */
.search input[type="text"] {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    color: black;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus sur le champ */
.search input[type="text"]:focus {
    border-color: green;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.2);
}