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%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin-bottom: 60px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin-bottom: 60px;
    font-size: 140%;
}

a {
    text-decoration: none;
}

.triscore-bg-yellow {
    background-color: #ffc107;
}

.triscore-text-yellow {
    color: #ffc107;
}

.triscore-text-blue {
    color: #17a2ba;
}

.triscore-bg-blue {
    background-color: #17a2ba;
}

.triscore-bg-dark {
    background-color: #343a40;
}

.triscore-text-greenyellow {
    color: greenyellow;
}

.triscore-text-green {
    color: green;
}

.triscore-text-red {
    color: red;
}

.triscore-text-white {
    color: white;
}

.menu-button {
    margin: 20px 0 0 20px;
    background-color: white;
    border: 1px solid gray;
    border-radius: 20px;
    height: 40px;
    width: 40px;
    color: darkturquoise;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    bottom: 20px;
    left: 20px;
    position: fixed;
    top: 50px;
}

.menu-button-mobile {
    display : none;
}

.menu-button:hover {
    background-color: #f0f0f0;
}

.btn-info {
    background-color: #ffc107;
    border-radius: 20px;
    border-color: gray;
}

.btn-secondary {
    background-color: white;
    border-radius: 20px;
    border-color: gray;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 200px;
}

.popup-content {
    padding: 20px;
}

.lower-image {
    margin-top: 12px;
    display: block;
    margin-left: 20px;
    width: 180px
}

.font-size-10 {
    font-size: 25px;
    font-weight: bold;
}

.custom-offcanvas-width {
    width: 20%;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    html {
        font-size: 12px;
    }

    .fixed-header-mobile {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000; /* ajustez selon vos besoins */
    }

    .menu-button {
        display : none;
    }

    .menu-button-mobile {
        display : block;
        left: 0px;
    }

    .page {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .popup-content {
        padding: 10px;
    }

    .lower-image {
        margin-left: 10px;
        width: 140px;
    }

    .font-size-10 {
        font-size: 20px;
    }

    .custom-offcanvas-width {
        width: 100%;
    }
}

