* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    background-color: rgb(38, 38, 37);
    padding-top: 10px;
    padding-bottom: 10px;
    height: 50px;
}
header *{
    max-height: 100%;
    max-width: 100%;
    display: flex;
    align-items:center;
    justify-content:center;
    color: rgb(241, 241, 241);
    margin-left: 2px;
    margin-right: 2px;
    text-decoration: inherit;
    padding-top: auto;
    padding-bottom: auto;
}
header form select,header form input,header form select option{
    color: rgb(41, 41, 41);
}
.a_menu {
    margin-left: 0;
    margin-right: auto;
}
/* .a_profil {
    width: 15%;
} */
.img_profil {
    object-fit: scale-down;
    border-radius: 10px;
    background-color: rgb(141, 141, 141);
    height: 50px;
}
.recherche{
    position: absolute;
    display: flex;
    left: 50%;
    transform: translate(-50%, 0);
}
.recherche *{
    border: 0;
    height: 50px;
    margin: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.recherche>span{
    height: 100%;
    margin-left: 4px;
    margin-right: 4px;
}
.trier_par {
    display: flex;
}
.trier_par form {
    margin-left: auto;
    margin-right: 0;
}
.annonces {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 6px;
    margin-left: auto;
    margin-right: auto;
}
.annonces_titre {
    font-size:x-large;
    font-weight: bolder;
    color: rgb(0, 0, 0);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.annonces_vendeur {
    display: flex;
}
.annonces_date {
    text-align: center;
}
.annonces_vendeur>a {
    margin-left: auto;
    white-space: nowrap;
    margin-right: auto;
    text-size-adjust: auto;
    color: rgb(0, 113, 133);
    text-decoration: inherit;
}
.annonces_vendeur>a:hover {
    color: rgb(155, 64, 11);
}
.annonce {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgb(211, 211, 211);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
}
.annonce:hover {
    background-color: rgb(134, 134, 134)
}
.annonce:hover > .annonces_titre {
    color: rgb(39, 52, 122);
}
.annonces_miniature {
    background-color: rgba(100, 100, 100, 0.5);
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1/1;
}
.annonces_catprix {
    display: flex;
    margin-top: auto;
}
.annonces_catprix>* {
    overflow-wrap: break-word;
    font-size:large;
    margin-right: 3px;
    margin-left: 3px;
    width: 50%;
}
.annonces_prix {
    text-align: right;
}
.annonces_gerer {
    display: flex;
}
.annonces_delete,.annonces_modifier{
    width: 50%;
}
.annonces_delete>input,.annonces_modifier>input{
    width: 100%;
    border: 0;
    cursor: pointer;
    background-color: rgb(240, 240, 240);
}
.annonces_delete:hover>input,.annonces_modifier:hover>input{
    background-color: rgb(197, 197, 197);
}
.annonce>* {
    width: 100%;
}
.annonce_unique{
    display: flex;
}
.annonce_unique_images {
    height: 100%;
    width: 300px;
}
.annonce_unique_images *{
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.profil{
    display: flex;
    background-color: rgba(117, 117, 117, 0.432);
    width: 100%;
}
.profil_image{
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.profil_gerer {
    display: flex;
    height: 20%;
}
.profil_gerer>*{
    width: 50%;
    height: 100%;
}
.profil_gerer>*>input{
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    background-color: rgb(240, 240, 240);
}
.profil_gerer>*:hover>input{
    background-color: rgb(197, 197, 197);
}

body {
    height: 100vh;
}
/* afficher les couleurs */

/* .annonces {background-color: rgb(47, 0, 255);}
header {background-color: rgb(202, 206, 0);}
.trier_par {background-color: rgb(102, 255, 0);}
body {background-color: rgb(255, 145, 0);} */