@import "https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap";

/* src/styles.scss */
body {
  width: auto;
  height: auto;
  font-family: "Metrolopolis", sans-serif;
  margin: 0;
  padding: 0;
  font-style: normal;
}
html {
  min-height: 100%;
  outline: none;
}
router-outlet.loading {
  opacity: 0.5;
  pointer-events: none;
}
.dark-mode {
  background-color: #333;
  color: #fff;
}
.psychologists-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.psychologists-table .table-header {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1.5fr 1.5fr 2fr;
  background:
    linear-gradient(
      135deg,
      #6366f1,
      rgb(145.8, 147.9, 245.2));
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.psychologists-table .table-header div {
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.psychologists-table .table-header div:last-child {
  border-right: none;
}
.psychologists-table .table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1.5fr 1.5fr 2fr;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.psychologists-table .table-row:hover {
  background: hsl(238.7323943662, 83.5294117647%, 114.6666666667%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.psychologists-table .table-row:last-child {
  border-bottom: none;
}
.psychologists-table .table-row > div {
  padding: 16px 12px;
  display: flex;
  align-items: center;
}
.psychologists-table .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.psychologists-table .user-info .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #6366f1,
      #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.psychologists-table .user-info .user-details .user-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  font-size: 14px;
}
.psychologists-table .user-info .user-details .user-email {
  color: #6b7280;
  font-size: 12px;
}
.psychologists-table .specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.psychologists-table .specializations .specialization-tag {
  background: rgb(253.031496063, 235.905511811, 206.968503937);
  color: rgb(172.4330708661, 110.9507874016, 7.0669291339);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgb(250.0196850394, 206.6909448819, 133.4803149606);
}
.psychologists-table .status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.psychologists-table .status-badge.active {
  background: rgb(134.8880597015, 244.6119402985, 208.2537313433);
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
  border: 1px solid rgb(64.4776119403, 238.5223880597, 180.8507462687);
}
.psychologists-table .status-badge.inactive {
  background: rgb(202.4382978723, 205.3127659574, 211.0617021277);
  color: rgb(72.1680851064, 76.8893617021, 86.3319148936);
  border: 1px solid rgb(160.770212766, 165.9234042553, 176.229787234);
}
.psychologists-table .rating-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.psychologists-table .rating-display .stars {
  color: #ffc107;
  font-size: 14px;
}
.psychologists-table .rating-display .rating-number {
  color: #1f2937;
  font-size: 13px;
}
.psychologists-table .sessions-info {
  text-align: center;
  font-weight: 500;
  color: #1f2937;
  font-size: 14px;
}
.psychologists-table .last-session {
  color: #6b7280;
  font-size: 12px;
  text-align: center;
}
.psychologists-table .user-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.psychologists-table .user-actions .action-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.psychologists-table .user-actions .action-btn.edit-btn {
  background: #6366f1;
  color: #ffffff;
}
.psychologists-table .user-actions .action-btn.edit-btn:hover {
  background: rgb(75.6, 79.05, 238.9);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.psychologists-table .user-actions .action-btn.suspend-btn {
  background: #6b7280;
  color: #ffffff;
}
.psychologists-table .user-actions .action-btn.suspend-btn:hover {
  background: rgb(83.7787234043, 89.2595744681, 100.2212765957);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.psychologists-table .user-actions .action-btn.delete-btn {
  background: #f59e0b;
  color: #ffffff;
}
.psychologists-table .user-actions .action-btn.delete-btn:hover {
  background: rgb(221.4251968504, 142.4744094488, 9.0748031496);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.psychologists-table .user-actions .action-btn.activate-btn {
  background: #ef4444;
  color: #ffffff;
}
.psychologists-table .user-actions .action-btn.activate-btn:hover {
  background: rgb(236.9901477833, 44.5098522167, 44.5098522167);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
