    .user-list-container {
      margin-top: 20px;
      width: 100%;
      overflow-x: auto;
    }
    
    .user-table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .user-table th, 
    .user-table td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
    
    .user-table th {
      background-color: #f8f9fa;
      font-weight: 600;
    }
    
    .user-table tr:hover {
      background-color: #f5f5f5;
    }
    
    .full-name {
      max-width: 200px;
      word-wrap: break-word;
    }
    
    .status-pending {
      color: #ffc107;
    }
    
    .status-approved {
      color: #28a745;
    }
    
    .status-rejected {
      color: #dc3545;
    }
    
    .action-buttons {
      display: flex;
      gap: 8px;
      white-space: nowrap;
    }
    
    .btn {
      padding: 5px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.2s;
    }
    
    .btn-add {
      background-color: #28a745;
      color: white;
      margin-bottom: 20px;
      text-decoration: none;
      display: inline-block;
    }
    
    .btn-edit {
      background-color: #17a2b8;
      color: white;
      text-decoration: none;
      display: inline-block;
    }
    
    .btn-delete {
      background-color: #dc3545;
      color: white;
    }
    
    .btn-status {
      background-color: #6c757d;
      color: white;
    }
    
    .no-users {
      padding: 20px;
      text-align: center;
      color: #666;
      font-style: italic;
    }
    
    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 100;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.4);
    }
    
    .modal-content {
      background-color: #fefefe;
      margin: 15% auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      max-width: 500px;
      border-radius: 5px;
    }
    
    .modal-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 20px;
    }