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;
}


.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Nouvelles propriétés pour un centrage parfait */
    padding: 0;
    line-height: 1;
}

    .fab i {
        /* Ajustement spécifique pour Font Awesome */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
/* Bouton rouge plein */
.participation-section .btn-decline-full {
    background-color: #dc3545; /* Rouge Bootstrap */
    color: white;
    border: 1px solid #dc3545;
}

    .participation-section .btn-decline-full:hover {
        background-color: #bb2d3b; /* Rouge plus foncé au survol */
        color: white;
    }

/* Style pour les filtres */
.filter-container {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style responsive */
@@media (max-width: 768px) {
    .filter-container .col-md-4,
    .filter-container .col-md-2,
    .filter-container .col-md-3 {
        margin-bottom: 1rem;
    }
}
/* CGU Page */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

    .legal-container h1 {
        font-weight: 700;
        color: #2c3e50;
    }

    .legal-container h2 {
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .legal-container ul {
        padding-left: 1.5rem;
    }

        .legal-container ul li {
            margin-bottom: 0.5rem;
        }

/* Layout principal */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenu principal */
main {
    flex: 1 0 auto;
}

/* Footer collé en bas */
footer {
    flex-shrink: 0;
    margin-top: auto;
}