/* Styles généraux pour la page de veille technologique */
body {
    background-color: #1E2D3D;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .veille-content {
    max-width: 1000px;
    margin: 120px auto;
    padding: 20px;
  }
  
  /* Titre global */
  .global-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .second-title{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
  }
  /* Chaque article de veille */
  .veille-item {
    background-color: #2A3B4D;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .veille-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .veille-header h2 {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0;
  }
  
  .veille-icon {
    font-size: 2rem;
  }
  
  .veille-sujet {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .veille-description,
  .veille-interet {
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* Bouton source */
  .source-button {
    display: inline-block;
    padding: 8px 15px;
    margin-top: 10px;
    background-color: #FFD700;
    color: #1E2D3D;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .source-button:hover {
    background-color: #FFC700;
  }
  
  /* Synthèse, outils et conclusion */
  .veille-synthese,
  .veille-outils,
  .veille-conclusion {
    background-color: #2A3B4D;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .veille-synthese h2,
  .veille-outils h2,
  .veille-conclusion h2 {
    color: #FFD700;
    margin-bottom: 15px;
  }
  
  /* Tableau de synthèse */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
  }
  
  table th,
  table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
  }
  
  table th {
    background-color: #1E2D3D;
    color: #FFD700;
  }
  
  table td {
    background-color: #2A3B4D;
  }
  
  /* Liste des outils */
  .veille-outils ul {
    list-style: none;
    padding-left: 0;
  }
  
  .veille-outils li {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  
  /* Texte de la conclusion */
  .veille-conclusion {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .veille-conclusion h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .veille-conclusion p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0.5rem 0 1rem 0;
  }
  
  .conclusion-points {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
  }
  
  .conclusion-points li {
    margin-bottom: 0.8rem;
    padding-left: 1.6rem;
    text-indent: -1.6rem;
    line-height: 1.6;
  }
  
  .conclusion-paragraph {
    margin-bottom: 1.2rem;
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .veille-content {
      margin: 100px 10px;
      padding: 10px;
    }
    table th,
    table td {
      font-size: 0.9rem;
    }
    /* Ajout d'un container responsive pour le tableau de synthèse */
    .veille-synthese table {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  
  