﻿/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-bottom: 60px;
}



*/

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    padding-bottom: 120px; /* Espace pour le footer */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Empêche que le contenu soit trop petit */
main {
    flex: 1; /* Le contenu prend tout l’espace restant */
}

/* Pied de page collé en bas */
/*footer {
    margin-top: auto;*/
    /*padding: 10px 20px;*/
    /*background-color: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #dee2e6;
}*/

/* Focus stylé */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
