/* Style pour la popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

#openPopup {
    align-self: end;
}

.popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style pour la table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/*all*/

* {
    font-family: Montserrat;
}

#headerAdmin {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1 {
    text-align: center;
    color: #182f84;
}

a.button, button {
    text-decoration: none;
    background-color: #182f84;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #000;
    color: #fff;
    padding: 15px 20px;
}

button:hover {
    cursor: pointer;
}

#bodyAdmin {
    display: flex;
    flex-direction: column;
}

.delete-button, .update-button {
    font-size: 20px;
    background-color: #fff;
    margin: 5px;
    box-shadow: none;
    padding: 0px;
}

.formLogin, #formDashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formLogin button, #formDashboard button, .formLogin label, #formDashboard label {
    margin-top: 10px;
}

#ip_otav {
    min-width: 280px;
}

.logoLogin {
    width: 300px;
    margin: auto;
    display: flex;
}

.logo{
    width: 200px;
}