* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/******************************** Design structuré page d'accueil ********************************/



/* Style global */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
  }
  
  main.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  
  /* Card styles */
  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
  }
  
  .card h3 {
    margin-top: 0;
    color: #444;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
  }
  
  .card ul li:last-child {
    border-bottom: none;
  }
  
  .card p {
    margin: 10px 0;
    line-height: 1.6;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 21px;
    height: 21px;
  }
  
  /* Highlight section for 'Actuellement' */
  .actuellement .highlight {
    background: #f9f2c6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .actuellement .highlight p {
    margin: 5px 0;
    font-weight: bold;
    color: #555;
  }
  
  /* Absences section */
  .absence-list .absence-item {
    background: #e3f2fd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Messagerie section */
  .messagerie .message-item {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .messagerie .message-item strong {
    display: block;
    color: #444;
    font-weight: bold;
  }
  
  .messagerie .message-item p {
    margin: 5px 0;
  }
  

  
  /* Menu du jour */
  .menu-jour p {
    margin: 10px 0;
    font-size: 14px;
  }
  
  .menu-jour strong {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    main.dashboard {
      grid-template-columns: 1fr;
    }
  }
  