/* ===== manageUsers.css ===== */

/* Page container */
#content {
  padding: 25px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Header */
#content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Search bar */
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-bar input,
.search-bar select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s;
}

.search-bar input:focus,
.search-bar select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Table styling */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
  text-align: left;
}

.styled-table thead {
  background-color: #007bff;
  color: #fff;
}

.styled-table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s;
}

.styled-table tbody tr:hover {
  background-color: #f9f9ff;
}

/* Buttons */
.btn {
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-deactivate {
  background-color: #f0ad4e;
}

.btn-delete {
  background-color: #d9534f;
}

.btn-reset {
  background-color: #5bc0de;
}

.btn-role {
  background-color: #5cb85c;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.pagination button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 6px 12px;
  cursor: pointer;
  transition:  0.2s;
}

.pagination button:hover:not(:disabled) {
  background: #0056b3;
}

.pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
