/**
 * All of the CSS for your frontend-facing functionality should be
 * included in this file.
 */

.admin-container-mbc {
    width: 95%;
    margin: 40px auto 20px auto;
}

.admin-container-consultant-mbc {
    margin: 0px auto;
    padding: 10px;
    border: 1px solid lightgray;
    border-collapse: collapse;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-container-consultant-mbc>div {
    width: 20%;
}

.align-center {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.container-classement-mentor,
.container-classement-consultant {
    width: 100%;
    margin: 30px auto;
}


.container-switch {
    margin: 30px auto;
    width: 800px;
    display: flex;
    justify-content: space-between;
}

.switch-classement {
    border: 2px solid #e26f38;
    padding: 10px;
    color: #e26f38;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border-radius: 5px;
}

.switch-classement:hover {
    background-color: #e26f38;
    color: white;
}

.main-container-classements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container-classements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.admin-container-consultant-mbc .avatar {
    width: 40px;
    height: auto;
}

.titre-classement {
    text-align: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 15px;
    margin: 0;
}

.container-classements {
    opacity: 0;
    display: none;
}

.show-classement {
    display: block;
    opacity: 1;
    transition: all 0.3s ease-out;
}

.titre-classement.mbc-global {
    background-color: #003e5d;
}

.titre-classement.mbc-integration {
    background-color: #e26f38;
}

.titre-classement.mbc-rookie {
    background-color: #91141a;
}

.entete-classement {
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.entete-classement.couleur-integration {
    background-color: #dd8b65;

}

.entete-classement.couleur-rookie {
    background-color: #c91b23;
}

.entete-classement.couleur-global {
    background-color: #000000;
}

.entete-classement>div {
    width: 20%;
}

.change-score {
    display: block;
    width: 20%;
    text-align: center;
}

.half-width {
    width: 10%;
}


.point-ca {
    color: #5d0017;
    font-size: 0.8rem;
    font-weight: bold;
}

.point-meilleur-ca {
    color: #495d00;
    font-size: 0.8rem;
    font-weight: bold;
}

.point-recrutement {
    color: #005d55;
    font-size: 0.8rem;
    font-weight: bold;
}

.point-totaux {
    color: #28005d;
    font-size: 0.8rem;
    font-weight: bold;
}

#modal-points-consultants {
    overflow-y: initial;
    height: auto;
    width: auto;
    line-height: inherit;
}

.container-modal-mbc {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    width: 800px;

}

.container-modal-mbc form {
    display: flex;
    flex-direction: column;
    width: 400px;
    /* margin: 0 auto; */
}

.suivi-integration,
.suivi-accord-cadre {
    margin: 20px auto;
}

.container-modal-mbc form input {
    padding: 10px;
    background-color: rgb(223, 223, 223);
    border: none;
}

.container-modal-mbc form label {
    text-transform: uppercase;
    color: #003e5d;
    margin-bottom: 0;
    margin-top: 20px;
}

.container-modal-mbc form button {
    background-color: #e26f38;
    padding: 10px;
    border-radius: 5px;
    color: white;
    border: none;
    margin: 20px auto;
}

.container-modal-mbc #nom-consultant {
    font-size: 1.5rem;
    text-align: center;
    color: #003e5d;
    font-weight: bold;
}

.legende-points span {
    color: #e26f38;
    font-weight: bold;
}

#submit-mbc-score {
    transition: all 0.3s ease-out;
}

#submit-mbc-score.disabled {
    background-color: lightgray;
    color: gray;
}

#message-systeme-mbc {
    padding: 15px;
    margin-top: 10px;
    text-align: center;
}

.error-mbc {
    background-color: red;
    color: white;
}

.warning-mbc {
    background-color: orangered;
    color: white;
}

.success-mbc {
    background-color: #003e5d;
    color: white;
}

.position-classement {
    font-size: 1rem;
    width: 30px;
    display: inline-block;
    border: 1px solid #003e5d;
    color: white;
    background-color: #003e5d;
    text-align: center;
    border-radius: 5px;
}