body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    
  }

  .timesheet-container {
    background: #fafafa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    max-width: 1600px;
    margin: auto;
  }

  h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #001f58;
  }

  table {
    width: 100%;
    height: auto;
    border-collapse: collapse;
    margin-top: 10px;
  }

  th, td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #ddd;
  }

  th {
    background-color: #1f4daf;
    font-weight: 600;
    color: #ffffff;
  }

  td {
    background-color: #fff;
    color: #363030;
  }

  .status-present {
    color: rgb(0, 121, 0);
    font-weight: bold;
  }

  .status-late {
    color: rgb(219, 143, 0);
    font-weight: bold;
  }

  .status-absent {
    color: rgb(151, 0, 0);
    font-weight: bold;
  }
  .timesheet-container {
    margin: 20px 0;
    overflow-x: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: white;
    padding: 15px;
  }
  
  .timesheet-container h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #3b82f6;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
  }
  
  th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
  }
  
  th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
  }
  
  tr:hover {
    background-color: #f8fafc;
  }
  
  .status-present {
    color: #10b981;
    font-weight: 500;
  }
  
  .status-late {
    color: #f59e0b;
    font-weight: 500;
  }
  
  .status-absent {
    color: #ef4444;
    font-weight: 500;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .timesheet-container {
      padding: 10px;
    }
    
    th, td {
      padding: 8px 10px;
      font-size: 0.8125rem;
    }
    
    .timesheet-container h3 {
      font-size: 1.125rem;
    }
  }
  
  @media (max-width: 640px) {
    table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
    
    .timesheet-container {
      margin: 15px -15px;
      border-radius: 0;
    }
  }
  
  @media (max-width: 480px) {
    th, td {
      padding: 6px 8px;
      font-size: 0.75rem;
    }
    
    .timesheet-container h3 {
      font-size: 1rem;
    }
  }