/* Styles de base pour Bootstrap */

/* Texte par défaut */
body {
    font-family: Arial, sans-serif;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* Bouton par défaut */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

/* Bouton primaire */
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

/* Bouton de lien */
.btn-link {
    font-weight: normal;
    color: #337ab7;
    border-radius: 0;
}

/* Formulaires */
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Étiquettes de formulaire */
.control-label {
    display: block;
    margin-bottom: 5px;
}

/* Conteneur de grille (utilisez les classes de Bootstrap pour les colonnes) */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Rendu des images réactives */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Classes d'espacement */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Classes de texte */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Classes de couleur */
.text-primary { color: #337ab7; }
.text-success { color: #5cb85c; }
.text-info { color: #5bc0de; }
.text-warning { color: #f0ad4e; }
.text-danger { color: #d9534f; }

/* Classes de fond */
.bg-primary { background-color: #337ab7; }
.bg-success { background-color: #5cb85c; }
.bg-info { background-color: #5bc0de; }
.bg-warning { background-color: #f0ad4e; }
.bg-danger { background-color: #d9534f; }