@import url("./colors.css");

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    font-family: 'Bebas Neue', cursive;
    background-color: #EBEBEB;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
}

.body_content {
  
}

.page_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
}

h1 {
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    color: #0F275C;
}

h2 {
    margin-bottom: 10px;
    line-height: 40px;
    position: relative;
    padding: 0 20px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
}

ul {
    list-style-type: none;
}

.container-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.spacer {
    width: 1px;
    height: 50%;
    margin: 0px 10px;
    background-color: white;
}

label {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 5px;
    color: rgb(153, 153, 153);
    text-align: left;
}

span.alert {
    color: red;
    margin: 0px 5px;
}

input[type=date] {
    width: 100%;
    max-width: 275px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

select {
    width: 100%;
    max-width: 275px;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

.panel_container {
    width: 100%;
    max-width: 750px;
    padding: 20px 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.44);
}

.btn {
    border: none;
    border-radius: 5px;
    display: block;
    font-size: 12px;
    margin-top: 10px;
    width: 80%;
    padding: 0;
    height: 38px;
    line-height: 38px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: bold;
}

.btn:hover {
    cursor: pointer;
}

.btn_alert {
    color: white;
    background-color: rgb(202, 29, 29);
}

.btn_alert:hover {
    background-color: rgb(255, 38, 38);
}

.btn_primary {
    width: 100%;
    max-width: 250px;
    background-color: rgb(197, 197, 197);
}

.btn_primary:hover {
    background-color: #F0C018;
    transition: 0.15s ease-in-out all;
}

.desactivate {
    display: none;
}

table {
    width: 100%;
    max-width: 90%;
    border-collapse: collapse;
    overflow-x: scroll;
    margin: 50px 0px;
}

thead tr {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    text-align: left;
}

td {
    padding: 10px 5rem;
    padding-left: 30px;
    font-size: 14px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

tr {
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.banniere {
    width: auto;
    height: 175px;
    margin-top: 3px;
    padding-top: 50px;
    padding-left: 5%;
    background-color: #0F275C;
}

.title_banniere {
    padding-left: 15%;
    color: white;
    font-size: calc(3em + 1vw);
}

.heure_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 50px;
}

.heure_container label {
    color: black;
}

.input_heure {
    padding: 6px;
    border-radius: 5px;
    border: 1px solid gray;
    outline: none;
    color: black;
    font-weight: bold;
}

@media (max-width: 850px) { 
    .panel_container {
        width: 80%;
    }
}



