/* 
html, body {

  background-color: #b3dff0;
  overflow-x: hidden;
} */
    /* Global reset et base */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;

  }
  .logoSimple {
    width: 150px;
    height: auto; /* Conserve les proportions de l'image */
  }

.underline{
  text-decoration: underline;
  text-underline-offset: 7px;
}
.underline-no-gap{
  text-decoration: underline;
  text-underline-offset: 4px;
}

  section {
    padding: 0;
    margin: 0;
    /* max-width: 800px; */
    /* background-color: #fff; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  }

  /* style popup */
  .modal {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background-color: #c3c3c3;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  .close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }


