.user-dashboard {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
html.dark .user-dashboard {
  background-color: #2A3142;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.user-header {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid rgba(74, 74, 255, 0.1);
}
.user-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
html.dark .user-header {
  border-bottom-color: rgba(122, 154, 255, 0.2);
}

.user-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A4AFF;
}
html.dark .user-title {
  color: #7A9AFF;
}

.user-content {
  padding: 1.5rem 2rem;
}
html.dark .user-content {
  background-color: #2A3142;
}

.user-table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
html.dark .user-table-container {
  background: transparent;
  box-shadow: none;
}

.user-table {
  width: 100%;
  border-collapse: collapse;
  color: #343a40;
}
html.dark .user-table {
  color: #E0E0E0;
}

.user-thead {
  background: rgba(74, 74, 255, 0.03);
}
html.dark .user-thead {
  background: rgba(122, 154, 255, 0.05);
}

.user-th {
  padding: 1rem;
  color: #4A4AFF;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(74, 74, 255, 0.1);
}
html.dark .user-th {
  color: #7A9AFF;
  border-bottom-color: rgba(122, 154, 255, 0.2);
}

.user-tr {
  transition: background 0.2s ease;
}
.user-tr:nth-child(even) {
  background: rgba(236, 239, 244, 0.3);
}
.user-tr:hover {
  background: rgba(74, 74, 255, 0.05) !important;
}
html.dark .user-tr {
  background-color: rgba(62, 74, 99, 0.3);
}
html.dark .user-tr:nth-child(even) {
  background-color: rgba(62, 74, 99, 0.5);
}
html.dark .user-tr:hover {
  background-color: rgba(122, 154, 255, 0.08) !important;
}

.user-td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}
html.dark .user-td {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.user-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.user-badge--yes {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
html.dark .user-badge--yes {
  background: rgba(40, 167, 69, 0.2);
}
.user-badge--no {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}
html.dark .user-badge--no {
  background: rgba(108, 117, 125, 0.2);
}

.user-col-id {
  width: 120px;
}

.user-col-name,
.user-col-lastname {
  min-width: 120px;
  max-width: 180px;
}

.user-col-staff,
.user-col-admin {
  width: 90px;
}

.user-col-actions {
  min-width: 250px;
}

.user-empty {
  padding: 3rem !important;
  text-align: center;
}

.user-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(0, 0, 0, 0.4);
}
html.dark .user-empty-state {
  color: rgba(224, 224, 224, 0.6);
}

.user-empty-icon {
  font-size: 2rem;
  color: #4A4AFF;
  opacity: 0.7;
}
html.dark .user-empty-icon {
  color: #7A9AFF;
}

.user-empty-text {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: #343a40;
}
html.dark .user-empty-text {
  color: #E0E0E0;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.user-btn__icon {
  font-size: 1em;
}
.user-btn__text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-btn--small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}
.user-btn--primary {
  background: rgba(74, 74, 255, 0.1);
  color: #4A4AFF;
  border: 1px solid rgba(74, 74, 255, 0.3);
}
.user-btn--primary:hover {
  background: rgba(74, 74, 255, 0.2);
  border-color: #4A4AFF;
}
html.dark .user-btn--primary {
  background: rgba(122, 154, 255, 0.1);
  border-color: rgba(122, 154, 255, 0.3);
}
html.dark .user-btn--primary:hover {
  background: rgba(122, 154, 255, 0.2);
}
.user-btn--secondary {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}
.user-btn--secondary:hover {
  background: rgba(108, 117, 125, 0.2);
  border-color: #6c757d;
}
html.dark .user-btn--secondary {
  background: rgba(158, 158, 158, 0.1);
  border-color: rgba(158, 158, 158, 0.3);
}
html.dark .user-btn--secondary:hover {
  background: rgba(158, 158, 158, 0.2);
}
.user-btn--warning {
  background: rgba(255, 193, 7, 0.1);
  color: rgb(211, 158.25, 0);
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.user-btn--warning:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
}
html.dark .user-btn--warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
}
html.dark .user-btn--warning:hover {
  background: rgba(255, 193, 7, 0.2);
}
.user-btn--danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.user-btn--danger:hover {
  background: rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}
html.dark .user-btn--danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
}
html.dark .user-btn--danger:hover {
  background: rgba(220, 53, 69, 0.2);
}
.user-btn--light {
  background: rgba(0, 0, 0, 0.05);
  color: #343a40;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.user-btn--light:hover {
  background: rgba(0, 0, 0, 0.1);
}
html.dark .user-btn--light {
  background: rgba(255, 255, 255, 0.05);
  color: #E0E0E0;
  border-color: rgba(255, 255, 255, 0.1);
}
html.dark .user-btn--light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.user-actions--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}

.user-text-center {
  text-align: center;
}

.user-text-right {
  text-align: right;
}

@media (max-width: 1670px) {
  .user-header {
    padding: 1.25rem 1.5rem;
  }
  .user-content {
    padding: 1.25rem 1.5rem;
  }
  .user-col-id {
    width: 100px;
  }
  .user-col-name,
  .user-col-lastname {
    min-width: 100px;
    max-width: 150px;
  }
  .user-actions--grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
}
@media (max-width: 970px) {
  .user-table {
    display: block;
    width: 100%;
  }
  .user-table thead {
    display: none;
  }
  .user-table tbody, .user-table tr, .user-table td {
    display: block;
    width: 100%;
  }
  .user-table tr {
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background: white;
  }
  html.dark .user-table tr {
    background: #2E384D;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  .user-table td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  html.dark .user-table td {
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
  .user-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #4A4AFF;
    margin-right: 1rem;
  }
  html.dark .user-table td:before {
    color: #7A9AFF;
  }
  .user-table td:last-child {
    border-bottom: none;
    justify-content: center;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    background: rgba(74, 74, 255, 0.03);
  }
  html.dark .user-table td:last-child {
    background: rgba(122, 154, 255, 0.05);
  }
  .user-table td:last-child:before {
    display: none;
  }
  .user-table td:last-child .user-actions {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .user-col-id,
  .user-col-name,
  .user-col-lastname,
  .user-col-staff,
  .user-col-admin,
  .user-col-actions {
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .user-btn__text {
    display: inline;
  }
  .user-actions--grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .user-dashboard {
    border-radius: 0.5rem;
  }
  .user-header {
    padding: 1rem !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .user-title {
    font-size: 1.25rem;
  }
  .user-content {
    padding: 1rem !important;
  }
  .user-empty {
    padding: 2rem !important;
  }
  .user-empty-icon {
    font-size: 1.8rem;
  }
  .user-empty-text {
    font-size: 0.95rem;
  }
  .user-btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=users_list.css.map */