    html, body {
      margin: 0;
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to bottom, #dcdcdc, #000000);
      color: #fff;
      display: flex;
      flex-direction: column;
    }

    header {
      background-color: #222;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      margin: 0;
      font-size: 1.8rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin-left: 1.5rem;
      font-weight: bold;
    }

    .content {
      flex-grow: 1;
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .nav-mois {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      margin-left: 300px;
      margin-right: 300px;
    }

    .nav-mois a,
    .export {
      background-color: #0077ff;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .nav-mois a:hover,
    .export:hover {
      background-color: #005bb5;
      margin-left: 15px;
      margin-right: 15px;
    }

    .export {
      float: right;
      margin-bottom: 1rem;
      display: inline-block;
    }

    table {
      width: 80%;
      border-collapse: collapse;
      background-color: #111;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    th, td {
      padding: 0.75rem;
      text-align: center;
      border-bottom: 1px solid #333;
    }

    th {
      background-color: #222;
      color: #00ffcc;
    }

    td {
      color: #ccc;
    }
    
    h2 {
      color: red;
    }
    
    p {
      color: black;
    }
    
    .points {
      color: #00ff90;
      font-weight: bold;
    }

    footer {
      background-color: #222;
      color: #ccc;
      text-align: center;
      padding: 2rem;
      margin-top: auto;
    }
    @media screen and (max-width: 768px) {
      .nav-mois {
        flex-direction: column;
        gap: 1rem;
      }

      table, thead, tbody, th, td, tr {
        display: block;
      }

      thead {
        display: none;
      }

      tr {
        margin-bottom: 1rem;
        background-color: #111;
        border-radius: 10px;
        padding: 1rem;
      }

      td {
        padding-left: 50%;
        position: relative;
        text-align: left;
      }

      td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        font-weight: bold;
        color: #00ffcc;
      }
    }
  .dropdown {
    display: inline-block;
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e1e1e;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background-color: #333;
  }