aboutsummaryrefslogblamecommitdiffstats
path: root/panel/src/pages/Roles.css
blob: 5304391e14a0bf88dedcaf1b3082a7bc3d012c02 (plain) (tree)































































                                            
.manage-roles {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f7fc;
  min-height: 100vh;
}

.manage-roles-container {
  width: 90%;
  max-width: 1200px;
  margin-top: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.manage-roles-header {
  text-align: center;
  margin-bottom: 30px;
}

.manage-roles-header h4 {
  font-size: 28px;
  color: #333;
}

.user-list {
  display: flex;
  flex-direction: column;
}

.user-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #f9fafc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.user-card button {
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.user-card button.btn-secondary {
  background-color: #6c757d;
}