.user-management-wrapper {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f5f5f5;
}

.user-management {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
}

.header4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header4 h1 {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background-color: #006699;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
}

.tab-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 14px;
  color: #666;
}

.tab-btn.active {
  color: #006699;
  border-bottom: 2px solid #006699;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #333;
}

.role-badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}

.role-badge.admin { background-color: #dc3545; color: white; }
.role-badge.super-admin { background-color: #198754; color: white; }
.role-badge.manager { background-color: #ffc107; color: black; }
.role-badge.normal-users { background-color: #0dcaf0; color: black; }

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-btn {
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
}

.pagination-btn.active {
  background-color: #006699;
  color: white;
  border-color: #006699;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Existing modal styles remain unchanged */
  
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
    }
  
    .modal-content {
      background-color: white;
      margin: 10% auto;
      padding: 20px;
      border-radius: 5px;
      width: 50%;
      max-width: 500px;
    }
  
    .modal-content h2 {
      margin-top: 0;
      margin-bottom: 20px;
    }
  
    .modal-content form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
  
    .modal-content input,
    .modal-content select {
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
    }
  
    .form-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 20px;
    }
  
    .action-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }
  
    .action-btn img {
      width: 20px;
      height: 20px;
    }
  

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  #createVehicleModal .modal-content {
    width: 60%;
    max-width: 600px;
  }
  .user-management-wrapper {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f5f5f5;
  }
  

