/* Crée par Rojo Ambinina - https://rehetra.blogspot.com */

/* Conteneur du formulaire */
#search-form {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Input de recherche */
#search-input {
    width: 100%;
    padding: 12px 50px 12px 15px; /* Espace pour le bouton */
    border: 2px solid #1D2650;
    border-radius: 10px 0px 0px 10px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
    background: white;
	height: 30px;
}

/* Bordure change de couleur au survol */
#search-input:hover,
#search-input:focus {
    border-color: #1558A0;
}

/* Placeholder amélioré */
#search-input::placeholder {
    color: #888;
    font-size: 14px;
}

/* Bouton de recherche superposé */
#search-form button {
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    color: white;
	background: #1D2650;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 31px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

/* Changement de couleur du bouton au survol */
#search-form button:hover {
    background: #1558A0;
    transform: translateY(-50%) scale(1.1);
}


/* Résultats de recherche */
#search-results {
    margin-top: 20px;
    padding: 10px;
    background: #ffffff;
}

.result-item {
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s, background 0.3s;
}

.result-item:hover {
    transform: scale(1.02);
    background: #f1f1f1;
	border-radius: 5px;
}

.result-item h4 a {
    color: #1D2650;
    text-decoration: none;
	font-size: 15pt;
}

.result-item p {
    font-family: Calibri, sans-serif;
}

.result-item a {
    color: #1A76D1;
}

/* Pagination */
#pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#pagination button {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    background: #1A76D1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

#pagination button:hover {
    background: #1558A0;
    transform: scale(1.1);
}

#pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Nombre de résultats */
#result-count {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}

/* Crée par Rojo Ambinina - https://rehetra.blogspot.com */