

/* Reset */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #f4f6fa;
}



.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
main {
    flex: 1;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}



.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

/* Base button class */
.base-btn {
    background: none;
    border: 1px solid #4a90e2;
}

/* Specific button styles */
.btn-primary {
    background-color: #4a90e2;
    color: white;
}


.btn-login
{
    background-color: #4a90e2;
    color: white;
}

/* Features Section */



.footer {
    justify-content: center;
    text-align: center;
    background-color: #333;
    color: white;
    padding: 30px;

}


/*On est plus précis et c'est juste pour l'identifiant dans l'admin*/
span.identifiant{
    font-size: 15px;
    margin-right: 20px;
    color: #666666;
}

/*Permet d'être générique sur le fait que l'on veut des input plat et non avec un profondeur*/
input,select
{
    border: 1px solid #ccc;
}

#fastdeliver-link {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}
.btn-disconnect{
    background-color: red;
    color:white;
    width:auto;
    height:auto;
    font-size:small;
    padding: 10px;
}
.btn-disconnect:hover {
    background-color: darkred;
    color:white;
}
.role
{
    margin-right: auto;
    margin-left: 20px;
    color: white;
    border-radius: 5px;
    padding: 5px;
    background-color: #02b691;
    font-size:10px;
}
#preference{
    background-color: #eeeeee;
    color:black;
    width:auto;
    height:auto;
    font-size:small;
    padding: 10px;
    margin-right: 10px;
    border-color: white;
}
#preference:hover {
    background-color: #0d82df;
    color:white;
}
.hide{
    display: none;
}