@import url("https://fonts.googleapis.com/css?family=Exo:100");
@import '../../../../styles/variables.scss';

:host {
  display: block;
  height: 100vh;
  width: 100vw;
  font-family: 'Exo', sans-serif;
  overflow: hidden;
  position: relative;
}

.main-content {
  margin-left: 220px; // espacio para sidebar
  padding: 2rem;
  height: 100vh;
  overflow-y: auto;
}
.text-primary{
  color: $primary-color;
}
.btn-primary{
  background-color: $primary-color;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: $border-radius;
  cursor: pointer;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: darken($primary-color, 10%);
  }
}
.dashboard-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.dashboard-card {
  background-color: $background-table-color;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 1200px;
}

.dashboard-title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: $primary-color;
}

.user-card {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1); // borde gris claro por defecto
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: none;

  &:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05); // sombra leve al pasar el mouse
  }

  &.selected {
    border-color: #00c8ff;
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.6);
  }
}
.action-btn {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;

  & + .action-btn {
    margin-left: 0.5rem; // Espaciado entre botones
  }

  &:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  &:active {
    transform: scale(0.98);
  }
}

