/* --- Couleurs DEDIKAM / DEDISPACE inspirées de Drupal 7 --- */

/* Fond général */
body {
    background-color: #fff;
    color: #2B2B2B;
}

/* Barre supérieure et footer */
.header, .navbar, .footer {
    background-color: #FF851B !important;
    color: #fff !important;
}

/* Liens */
a, a:visited {
    color: #FF851B;
}
a:hover, a:focus {
    color: #6ABD45;
}

/* Boutons principaux */
.btn, .btn-primary, input[type="submit"], button {
    background-color: #6ABD45 !important;
    color: #fff !important;
    border-color: #6ABD45 !important;
}
.btn:hover, .btn-primary:hover, input[type="submit"]:hover, button:hover {
    background-color: #8FD14F !important;
    border-color: #8FD14F !important;
    color: #fff !important;
}

/* Titres (option) */
h1, h2, h3, h4, h5, h6 {
    color: #2B2B2B;
}

/* Champs actifs */
input:focus, textarea:focus, select:focus {
    border-color: #FF851B;
    box-shadow: 0 0 0 2px #FF851B22;
}
