/** ===========
BASE STYLES
==============*/

h1 {
    font-size: 1.8rem;
    padding-bottom: 1%;
    position: relative;
}

h2 {
    font-size: 1.5rem;
    padding-bottom: 1%;
}

kbd {
    margin: 0px 0.1em;
    padding: 0.1em 0.6em;
    border-radius: 3px;
    border: 1px solid rgb(204, 204, 204);
    color: rgb(51, 51, 51);
    line-height: 1.4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px #ffffff;
    background-color: rgb(247, 247, 247);
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
    border-radius: 3px;
    text-shadow: 0 1px 0 #fff;
}

label:first-letter {
    text-transform: uppercase;
}

/**===================
LAYOUT STYLES
====================*/
html {
    overflow-y: auto;
}

body>header {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    height: 10vh;
}

body>section {
    min-height: 85vh;
}

#footer {
    background-color: #ccc;
    height: 5vh;
    padding-right: 0.5rem;
}

/** MENU BULMA */
a, .navbar-link.is-active, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:hover {
    color: #dd7425 !important;
}

.navbar-link:not(.is-arrowless)::after {
    border-color: #dd7425 !important;
}

.navbar-item, .navbar-link {
    color: #696969 !important;
}

.navbar-brand {
    margin-left: 1rem;
}

.navbar-brand a:first-of-type {
    text-transform: uppercase;
    margin-right: 5rem;
    font-weight: bolder;
}

/** =================
STYLES MODULE
===================*/

.std p {
    line-height: 2rem;
}

.std label~span {
    font-weight: bolder;
    margin-left: 0.8rem;
    color: #0e301a;
}

.std>header>p {
    box-shadow: none;
    background-color: DimGray;
    padding: 1%;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000;
}

.aide {
    cursor: help;
    border-bottom: 1px dotted black;
}

.table_standard {
    border-collapse: collapse;
}

.table_standard th:first-of-type {
    border-radius: 4px 0px 0px 0px;
}

.table_standard th:last-of-type {
    border-radius: 0px 4px 0px 0px;
}

.table_standard thead th {
    background-color: DimGray;
    padding: 1%;
    color: #fff;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.table_standard td {
    padding: .5rem;
}

.table_standard td:first-lettr {
    text-transform: uppercase;
}

/** ==============
FORM STYLES
================*/
input:invalid {
    border-color: #800000;
}

input:valid {
    border-color: #468847;
}

/*************************************************************************************
    BUTTONS RADIO avec Bulma Group (https://bulma.io/documentation/elements/button/)
**************************************************************************************/
.buttonsradio input[type="radio"] {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.buttonsradio input+label {
    color: burlywood;
}

.buttonsradio input:checked+label {
    background-color: #dd7425;
    color: #fff;
}

.buttonsradio label:first-of-type {
    border-top-left-radius: .375em !important;
    border-bottom-left-radius: .375em !important;
}

/** ==============
BOOTSTRAP STYLES
================*/
.is-success {
    color: #155724 !important;
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
}

.is-danger {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
}

.is-primary {
    color: #004085 !important;
    background-color: #cce5ff !important;
    border-color: #b8daff !important;
}

.notification {
    margin: 1rem auto;
}