﻿body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* Style the header */
.header {
    padding: 1px;
    text-align: center;
    background: #1abc9c;
    color: white;
}

    /* Increase the font size of the h1 element */
    .header h1 {
        font-size: 40px;
    }

/* Style the top navigation bar */
.navbar {
    overflow: hidden;
    background-color: #333;
}

    /* Style the navigation bar links */
    .navbar a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
    }

        /* Right-aligned link */
        .navbar a.right {
            float: right;
        }

        /* Change color on hover */
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

/* Main column */
.main {
    flex: 100%;
    background-color: white;
    padding: 20px;
}

table {
    margin-left: 25px;
}

td {
    text-align: left;
    vertical-align: top;
    padding-bottom: 10px;
}

td:nth-child(1) {
    width: 140px;
}

li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #f1f1f1;
    font-size: small;
    font-style: italic;
}

/* Video */
.video {
    padding: 20px;
    text-align: center;
}

/* menu items */
.menu_item {
    color: darkblue;
    font-style: italic;
}

/* bouton */
.button {
    color: blue;
}

/* grilles */
.grid {
    color: blue;
}

/* champ */
.field {
    color: green;
    font-weight: bold;
}

/* Valeur de champ */
.field_value {
    color: rebeccapurple;
    font-weight: bold;
}

/* formulaire */
.form {
    color: darkblue;
    font-weight: bold;
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}
