@import url(https://fonts.googleapis.com/css?family=Jost);

html {
    background-image: url(../background.webp);
    background-repeat: round;
}

body {
    font-family: 'Jost', sans-serif;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: #000000;
    text-align: center;
}

a {
    color: #000000;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #000000;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    color: #000000;
}

.table-striped > thead > tr > th {
    color: #000000;
}

input[type=date]::-webkit-calendar-picker-indicator {
    color: transparent;
    background-image: url(../calendar.svg);
}

/* Message */

.message {
    width: 100%;
    text-align: center;
    font-size: 22px;
    position: absolute;
    top: 50px;
    border-radius: 15px;
    color: white;
    padding: 10px 0;

}

.danger {
    background-color: rgba(255, 53, 63, 0.849);
    border: 2px solid red;
}

.succes {
    background-color: rgba(53, 255, 63, 0.589);
    border: 2px solid green;
}


.container {
    padding-top: 10%;
}

.formulaireBlock,
.approveBlock {
    position: relative;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.644);
    border-radius: 15px;
    opacity: 1;
    padding: 20px 5px;
    margin: 0 auto;


}

.label-presentation {
    text-align: center;
    color: #000000;
    font-size: 14px;
    margin-top: -10px
}


.menu-selector {
    display: flex;
    justify-content: space-evenly;
    margin: 50px 0;
}

.menu-selector > .item-selector {
    border-radius: 35px;
    height: 300px;
    transition: 0.4s ease-in-out;
}

.menu-selector > .item-selector:hover {
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.menu-selector > .item-selector > .margin-border {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.menu-selector > .item-selector > .margin-border > .icon-selector {
    font-size: 150px;
    text-align: center;
    transition: 0.4s ease-in-out;
}

.fa-circle-exclamation {
    color: #FF353F;
}

.fa-wpforms {
    color: #0048FFFF;
}

.fa-bed {
    color: #1BA11BFF;
}

.actions {
    /*  les deux boutons sur une seul ligne mais séparés */
    display: flex;
    justify-content: space-around;
    margin: 20px 0;

}

.table-inline {
    display: inline-flex;
}

.badge {
    color: #000000;
}