/*Header et body*/

body{
    background-color: rgb(230, 230, 250);
    min-width: 400px;
}

.header{
    height: 200px;
    background-color: rgb(133, 173, 221);
    display:flex;
    justify-content: space-between;   
}

#bonjour-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    font-weight: bold;
    font-size: 50px;
}

#bonjour-span{
    font-size: 30px;
}

#deco-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    font-size: 35px;
}

#deco-span{
    background-color: rgb(11, 28, 137);
    border-radius: 20px;
    padding: 15px;
    font-weight: bold;
    color: white;
}


/* Style pour la liste ul */
.listes-sorts {
    list-style-type: none; /* Supprimez les puces de liste */
}

/* Style pour chaque élément li */
.ligne {
    display: grid; 
    grid-template-columns: 80% 20%;
    grid-template-rows: auto auto;
    padding-top: 3px; /* Espacement entre les éléments li */
    padding-bottom: 3px;
    margin: 5px 0 5px 0;
    width: 100%;
    font-size: 25px;
}

/* Style pour le libellé */
.libelle {
    grid-column: 1;
    grid-row: 1;
    font-weight: bold;
    font-size: 35px;
    color: rgb(11, 28, 137);
    
}

.libelle>a:visited{
    color: rgb(11, 28, 137);
}

.libelle>a{
    color: rgb(11, 28, 137);
    text-decoration: none;
}

.description{
    grid-column: 1;
    grid-row: 2;
    font-size: 25px;
    align-items: left;
}

/* Style pour le bouton */
.bouton {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.bouton>button, .bouton>input{
    height: 100%;
    background-color: rgb(11, 28, 137);
    border-radius: 20px;
    padding: 15px;
    font-weight: bold;
    color: white;
    width: 100%;
    font-size: 20px;
}

.bouton>button:disabled{
    background-color: rgb(175, 180, 215);
}

.paging{
    display: flex;
    justify-content: space-between;
    font-size: 50px;
}

.paging > .numero-page {
    display:flex;
    width:100px;
    border-radius: 10px;
    justify-content: center;
    text-decoration: none;
}

.paging > .numero-page:focus{
    box-shadow: 4px 4px 10px black;
}

.div-header{
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    border: 20px black;
    background-color: rgb(11, 28, 137);
    color: white;
    /* haut | droit | bas | gauche */
    margin: 10px 0 10px 0; 
}

.header-sorts-prep{
    font-size: 18px;
    font-weight: bold;
}

.h2{
    font-size: 40px;
}

#recherche-form{
    width: 100%;
    height: 37px;
    display:flex;
    justify-content: center;
    margin: 20px 0px 20px 0px; 
}

#recherche-input{
    width: 90%;
    height: 37px;
    font-size: 35px;
}

/*Authentification*/

#auth-form{
    display: grid;
    grid-template-columns: 80% 20%;
    grid-template-rows: auto auto;
    margin-top: 50px;
}

.input-form{
    font-size: 25px;
    
}

.input-form>input{
    height: 30px;
    width: 90%;
}

#auth-username{
    grid-column: 1;
    grid-row: 1;
    width: 100%;
}

#auth-password{
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

#auth-button{
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
}

#auth-button>input{
    height: 100%;
    width: 100%;
    
}

