<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Tableau de suivi du temps</title>
  <style>
    /* Style pour le tableau et les boutons */
    table {
      width: 100%;
      border-collapse: collapse;
    }

    th, td {
      padding: 10px;
      border: 1px solid #ccc;
      text-align: left;
    }

    .delete-row {
      background-color: #ff4d4d;
      color: white;
      border: none;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 5px;
      font-weight: bold;
    }

    .delete-row:hover {
      background-color: #ff1a1a;
    }

    .delete-row:focus {
      outline: none;
    }

    /* Optionnel : Style de tableau vide */
    .empty-message {
      text-align: center;
      font-style: italic;
      color: #888;
    }
  </style>
</head>
<body>

