/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[7].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].rules[1].use[1]!./src/styles.sass?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* IA EVA — Global styles */
.page-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.page-header__icon {
  display: none;
}
.page-header__content {
  flex: 1;
  min-width: 0;
}
.page-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 2px;
  line-height: 1.2;
}
.page-header__subtitle {
  font-size: 0.875rem;
  color: #8888A0;
  margin: 0;
}
.page-header__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 250ms ease;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  box-shadow: 0 4px 12px rgba(100, 41, 205, 0.12);
  transform: translateY(-2px);
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.stat-card__body {
  flex: 1;
  min-width: 0;
}
.stat-card__value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.stat-card__label {
  font-size: 0.75rem;
  color: #8888A0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.stat-card--primary {
  border-bottom-color: #6429CD;
}
.stat-card--primary .stat-card__icon {
  background: rgba(100, 41, 205, 0.08);
  color: #6429CD;
}
.stat-card--primary .stat-card__value {
  color: #6429CD;
}
.stat-card--success {
  border-bottom-color: #006B4B;
}
.stat-card--success .stat-card__icon {
  background: #D3F5EB;
  color: #006B4B;
}
.stat-card--success .stat-card__value {
  color: #006B4B;
}
.stat-card--warning {
  border-bottom-color: #754904;
}
.stat-card--warning .stat-card__icon {
  background: #FDE9D0;
  color: #754904;
}
.stat-card--warning .stat-card__value {
  color: #754904;
}
.stat-card--danger {
  border-bottom-color: #D32F2F;
}
.stat-card--danger .stat-card__icon {
  background: #FDECEA;
  color: #D32F2F;
}
.stat-card--danger .stat-card__value {
  color: #D32F2F;
}
.stat-card--info {
  border-bottom-color: #0c4a6e;
}
.stat-card--info .stat-card__icon {
  background: #e0f2fe;
  color: #0c4a6e;
}
.stat-card--info .stat-card__value {
  color: #0c4a6e;
}
.stat-card--neutral {
  border-bottom-color: #8888A0;
}
.stat-card--neutral .stat-card__icon {
  background: #f0f0f5;
  color: #4D4D5F;
}
.stat-card--neutral .stat-card__value {
  color: #4D4D5F;
}

.eva-table {
  width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  overflow: hidden;
}
.eva-table__wrapper {
  overflow-x: auto;
}
.eva-table table {
  width: 100%;
  border-collapse: collapse;
}
.eva-table thead {
  background: linear-gradient(135deg, #f8f7ff 0%, #f0eeff 100%);
}
.eva-table thead th {
  padding: 14px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #330072;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(100, 41, 205, 0.12);
  white-space: nowrap;
}
.eva-table tbody tr {
  border-left: 3px solid transparent;
  transition: all 150ms ease;
}
.eva-table tbody tr:hover {
  background: rgba(100, 41, 205, 0.03);
  border-left-color: #6429CD;
}
.eva-table tbody tr td {
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #1A1A2E;
  border-bottom: 1px solid #f0f0f5;
  vertical-align: middle;
}
.eva-table__footer {
  padding: 16px 24px;
  border-top: 1px solid #f0f0f5;
  background: #FFFFFF;
}

.filter-bar {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  margin-bottom: 24px;
}
.filter-bar__group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-bar__search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.filter-bar__search .fa-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8888A0;
  font-size: 0.875rem;
  pointer-events: none;
}
.filter-bar__search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1.5px solid #e8e8f0;
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  color: #1A1A2E;
  background: #FFFFFF;
  transition: all 250ms ease;
}
.filter-bar__search input::placeholder {
  color: #8888A0;
}
.filter-bar__search input:focus {
  outline: none;
  border-color: #6429CD;
  box-shadow: 0 0 0 3px rgba(100, 41, 205, 0.1);
}
.filter-bar__select select {
  padding: 10px 14px;
  border: 1.5px solid #e8e8f0;
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  color: #1A1A2E;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 250ms ease;
  min-width: 160px;
}
.filter-bar__select select:focus {
  outline: none;
  border-color: #6429CD;
  box-shadow: 0 0 0 3px rgba(100, 41, 205, 0.1);
}
.filter-bar__date-range {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.filter-bar__date-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-bar__date-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8888A0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-left: 4px;
}
.filter-bar__date-input {
  padding: 9px 12px;
  border: 1.5px solid #e8e8f0;
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  color: #1A1A2E;
  background: #FFFFFF;
  transition: all 250ms ease;
  min-width: 140px;
}
.filter-bar__date-input:focus {
  outline: none;
  border-color: #6429CD;
  box-shadow: 0 0 0 3px rgba(100, 41, 205, 0.1);
}
.filter-bar__date-error {
  margin-top: 4px;
  font-size: 0.875rem;
  color: #dc3545;
}
.filter-bar__date-error i {
  margin-right: 4px;
}
.filter-bar__btn {
  padding: 10px 20px;
  background: #6429CD;
  color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 250ms ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.filter-bar__btn:hover {
  background: #330072;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  color: #FFFFFF;
}
.filter-bar__btn i {
  margin-right: 6px;
}
.filter-bar__btn--secondary {
  background: #FFFFFF;
  color: #6429CD;
  border-color: #6429CD;
}
.filter-bar__btn--secondary:hover {
  background: rgba(100, 41, 205, 0.08);
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  color: #6429CD;
}
.filter-bar__btn--tertiary {
  background: transparent;
  color: #6429CD;
  border-color: transparent;
}
.filter-bar__btn--tertiary:hover {
  background: rgba(100, 41, 205, 0.08);
  color: #6429CD;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #6429CD;
  color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 250ms ease;
}
.primary-btn:hover {
  background: #330072;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  color: #FFFFFF;
}
.primary-btn i {
  margin-right: 6px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #FFFFFF;
  color: #6429CD;
  border: 2px solid #6429CD;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 250ms ease;
}
.secondary-btn:hover {
  background: rgba(100, 41, 205, 0.08);
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  color: #6429CD;
}
.secondary-btn i {
  margin-right: 6px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-pill--pending {
  background: #FDE9D0;
  color: #754904;
}
.status-pill--pending .status-pill__dot {
  background: #754904;
}
.status-pill--in_progress, .status-pill--in-progress {
  background: #e0f2fe;
  color: #0c4a6e;
}
.status-pill--in_progress .status-pill__dot, .status-pill--in-progress .status-pill__dot {
  background: #0c4a6e;
}
.status-pill--generando-prueba {
  background: #d1ecf1;
  color: #0c5460;
}
.status-pill--generando-prueba .status-pill__dot {
  background: #0c5460;
}
.status-pill--prueba-generada {
  background: #d4edda;
  color: #155724;
}
.status-pill--prueba-generada .status-pill__dot {
  background: #155724;
}
.status-pill--prueba-iniciada {
  background: #e0f2fe;
  color: #0c4a6e;
}
.status-pill--prueba-iniciada .status-pill__dot {
  background: #0c4a6e;
}
.status-pill--procesando-resultados {
  background: #e8d5f5;
  color: #5b21b6;
}
.status-pill--procesando-resultados .status-pill__dot {
  background: #5b21b6;
}
.status-pill--prueba-finalizada {
  background: #D3F5EB;
  color: #006B4B;
}
.status-pill--prueba-finalizada .status-pill__dot {
  background: #006B4B;
}
.status-pill--completed, .status-pill--active {
  background: #D3F5EB;
  color: #006B4B;
}
.status-pill--completed .status-pill__dot, .status-pill--active .status-pill__dot {
  background: #006B4B;
}
.status-pill--expired, .status-pill--failed {
  background: #FDECEA;
  color: #D32F2F;
}
.status-pill--expired .status-pill__dot, .status-pill--failed .status-pill__dot {
  background: #D32F2F;
}
.status-pill--draft {
  background: #f0f0f5;
  color: #4D4D5F;
}
.status-pill--draft .status-pill__dot {
  background: #8888A0;
}
.status-pill--archived {
  background: #f0f0f5;
  color: #8888A0;
}
.status-pill--archived .status-pill__dot {
  background: #c0c0c0;
}
.status-pill--passed {
  background: #D3F5EB;
  color: #006B4B;
}
.status-pill--passed .status-pill__dot {
  background: #006B4B;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}
.empty-state__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 41, 205, 0.08) 0%, rgba(100, 41, 205, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.empty-state__icon i {
  font-size: 2rem;
  color: #6429CD;
  opacity: 0.6;
}
.empty-state__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A2E;
  margin: 0 0 4px;
}
.empty-state__text {
  font-size: 0.875rem;
  color: #8888A0;
  margin: 0 0 24px;
  max-width: 360px;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e8e8f0;
  background: #FFFFFF;
  color: #4D4D5F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
  font-size: 0.875rem;
}
.action-btn:hover {
  border-color: #6429CD;
  color: #6429CD;
  background: rgba(100, 41, 205, 0.08);
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
}
.action-btn--primary {
  border-color: #6429CD;
  color: #6429CD;
}
.action-btn--primary:hover {
  background: #6429CD;
  color: #FFFFFF;
}
.action-btn--danger:hover {
  border-color: #D32F2F;
  color: #D32F2F;
  background: #FDECEA;
}
.action-btn--success {
  border-color: #006B4B;
  color: #006B4B;
}
.action-btn--success:hover {
  background: #006B4B;
  color: #FFFFFF;
}

.eva-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #8888A0;
  margin-bottom: 16px;
}
.eva-breadcrumb a {
  color: #6429CD;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}
.eva-breadcrumb a:hover {
  color: #330072;
}
.eva-breadcrumb__separator {
  color: #d0d0d8;
  font-size: 0.75rem;
}
.eva-breadcrumb__current {
  color: #1A1A2E;
  font-weight: 500;
}

.eva-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.eva-loading__spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(100, 41, 205, 0.15);
  border-top-color: #6429CD;
  border-radius: 50%;
  animation: eva-spin 0.8s linear infinite;
}
.eva-loading__text {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #8888A0;
}

@keyframes eva-spin {
  to {
    transform: rotate(360deg);
  }
}
.eva-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  overflow: hidden;
  margin-bottom: 24px;
}
.eva-card__header {
  padding: 16px 24px;
  background: linear-gradient(135deg, #faf9ff 0%, #f5f3ff 100%);
  border-bottom: 1px solid rgba(100, 41, 205, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eva-card__header i {
  color: #6429CD;
  font-size: 0.875rem;
}
.eva-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0;
}
.eva-card__subtitle {
  font-size: 0.75rem;
  color: #8888A0;
  margin: 0;
  font-weight: 400;
}
.eva-card__body {
  padding: 24px;
}

.score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.score-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid #f0f0f5;
}
.score-circle__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.score-circle__label {
  font-size: 0.75rem;
  color: #8888A0;
  margin-top: 2px;
}
.score-circle--success::before {
  border-color: #D3F5EB;
  border-top-color: #006B4B;
  border-right-color: #006B4B;
}
.score-circle--success .score-circle__value {
  color: #006B4B;
}
.score-circle--danger::before {
  border-color: #FDECEA;
  border-top-color: #D32F2F;
  border-right-color: #D32F2F;
}
.score-circle--danger .score-circle__value {
  color: #D32F2F;
}

.eva-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}
.eva-progress__bar {
  flex: 1;
  height: 8px;
  background: #f0f0f5;
  border-radius: 4px;
  overflow: hidden;
}
.eva-progress__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 250ms ease;
  background: #6429CD;
}
.eva-progress__value {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1A1A2E;
  min-width: 42px;
  text-align: right;
}
.eva-progress--success .eva-progress__fill {
  background: #006B4B;
}
.eva-progress--warning .eva-progress__fill {
  background: #754904;
}
.eva-progress--danger .eva-progress__fill {
  background: #D32F2F;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.risk-badge--low {
  background: #D3F5EB;
  color: #006B4B;
}
.risk-badge--medium {
  background: #FDE9D0;
  color: #754904;
}
.risk-badge--high {
  background: #FDECEA;
  color: #D32F2F;
}

.eva-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(100, 41, 205, 0.08);
  color: #6429CD;
  border: 1px solid rgba(100, 41, 205, 0.15);
  transition: all 150ms ease;
}
.eva-chip:hover {
  background: rgba(100, 41, 205, 0.12);
}
.eva-chip__remove {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: rgba(100, 41, 205, 0.15);
  color: #6429CD;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  transition: all 150ms ease;
}
.eva-chip__remove:hover {
  background: #6429CD;
  color: #FFFFFF;
}

.delta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.delta-badge--positive {
  background: #D3F5EB;
  color: #006B4B;
}
.delta-badge--negative {
  background: #FDECEA;
  color: #D32F2F;
}
.delta-badge--neutral {
  background: #f0f0f5;
  color: #8888A0;
}

.eva-tabs {
  display: flex;
  gap: 2px;
  background: #f0f0f5;
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 24px;
}
.eva-tabs__tab {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #8888A0;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.eva-tabs__tab:hover {
  color: #1A1A2E;
}
.eva-tabs__tab.active {
  background: #FFFFFF;
  color: #6429CD;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  font-weight: 600;
}

.eva-timeline {
  position: relative;
  padding-left: 28px;
}
.eva-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e8e8f0;
}
.eva-timeline__item {
  position: relative;
  padding-bottom: 24px;
}
.eva-timeline__item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6429CD;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px rgba(100, 41, 205, 0.2);
}
.eva-timeline__item--completed::before {
  background: #006B4B;
  box-shadow: 0 0 0 2px rgba(0, 107, 75, 0.2);
}
.eva-timeline__item--pending::before {
  background: #754904;
  box-shadow: 0 0 0 2px rgba(117, 73, 4, 0.2);
}
.eva-timeline__item--expired::before {
  background: #D32F2F;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}
.eva-timeline__item--in_progress::before {
  background: #0c4a6e;
  box-shadow: 0 0 0 2px rgba(12, 74, 110, 0.2);
}
.eva-timeline__content {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
}
.eva-timeline__date {
  font-size: 0.75rem;
  color: #8888A0;
  margin-bottom: 4px;
}
.eva-timeline__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A2E;
  margin: 0;
}
.eva-timeline__meta {
  font-size: 0.75rem;
  color: #8888A0;
  margin-top: 4px;
}

.eva-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 41, 205, 0.08) 0%, rgba(100, 41, 205, 0.15) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6429CD;
  flex-shrink: 0;
  text-transform: uppercase;
}

.eva-sidebar {
  position: sticky;
  top: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
  padding: 24px;
}
.eva-sidebar__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 16px;
}
.eva-sidebar__row {
  margin-bottom: 16px;
}
.eva-sidebar__row small:first-child {
  display: block;
  color: #8888A0;
  font-size: 0.75rem;
  margin-bottom: 2px;
}
.eva-sidebar__divider {
  border: none;
  border-top: 1px solid #f0f0f5;
  margin: 16px 0;
}

.page-wrapper .form-control,
.page-wrapper .form-select {
  border-radius: 50px;
}
.page-wrapper textarea.form-control {
  border-radius: 3px !important;
  padding: 13px 14px 10px;
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    gap: 16px;
  }
  .page-header__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .stat-card {
    padding: 16px;
  }
  .filter-bar__group {
    flex-direction: column;
  }
  .filter-bar__group .filter-bar__search {
    width: 100%;
  }
  .filter-bar__group .filter-bar__select select {
    width: 100%;
  }
  .filter-bar__group .filter-bar__btn {
    width: 100%;
  }
}
.swal2-popup {
  font-family: "Poppins", sans-serif !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(100, 41, 205, 0.16) !important;
  padding: 32px 32px 24px !important;
}

.swal2-icon {
  transform: scale(0.65) !important;
  margin: -12px auto 4px !important;
  animation: none !important;
}
.swal2-icon *, .swal2-icon *::before, .swal2-icon *::after {
  animation: none !important;
  transition: none !important;
}

.swal2-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #330072 !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

.swal2-html-container,
.swal2-content {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.875rem !important;
  color: #330072 !important;
  line-height: 1.6 !important;
}

.swal2-confirm {
  background-color: #6429CD !important;
  border-radius: 50px !important;
  box-shadow: 0 12px 24px rgba(100, 41, 205, 0.4) !important;
  transition: all 250ms ease !important;
}
.swal2-confirm:hover {
  background-color: #6429CD !important;
  box-shadow: 0 0 15px #6429CD, inset 0 0 20px rgba(189, 189, 255, 0.2) !important;
  transform: translateY(-1px) !important;
}
.swal2-confirm:focus {
  box-shadow: 0 12px 24px rgba(100, 41, 205, 0.4) !important;
}

.swal2-loader {
  border-color: #6429CD transparent #6429CD transparent !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #1A1A2E;
  background-color: #F6F7FC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: #DFDFFF;
  color: #330072;
}

/* Smooth transitions */
button, a, input, select, textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards enhancement */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Buttons enhancement */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #440099 0%, #6B2FB5 100%);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #390080 0%, #5f2aa1 100%);
}

/* Form inputs */
.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  border-color: #440099;
  box-shadow: 0 0 0 3px rgba(68, 0, 153, 0.1);
  outline: none;
}

/* Tables */
.table {
  border-collapse: separate;
  border-spacing: 0;
}
.table thead th {
  background-color: #f8f7ff;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  color: #440099;
  padding: 1rem;
}
.table tbody tr {
  transition: background-color 0.2s ease;
}
.table tbody tr:hover {
  background-color: #f8f7ff;
}
.table tbody tr td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

/* Alerts */
.alert {
  border-radius: 8px;
  border: none;
}
.alert.alert-danger {
  background-color: #fff5f5;
  color: #c53030;
}
.alert.alert-success {
  background-color: #f0fdf4;
  color: #166534;
}
.alert.alert-warning {
  background-color: #fffbeb;
  color: #92400e;
}
.alert.alert-info {
  background-color: #f0f9ff;
  color: #0c4a6e;
}

/* Spinners */
.spinner-border {
  border-width: 3px;
}
.spinner-border.text-primary {
  border-color: rgba(68, 0, 153, 0.2);
  border-right-color: #440099;
}

/* Badge for optional fields */
.badge-optional {
  font-size: 0.72rem;
  font-weight: 400;
  color: #6c757d;
  background-color: #f0f0f5;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
}

/* Badge for required fields */
.badge-required {
  font-size: 0.72rem;
  font-weight: 400;
  color: #c53030;
  background-color: #fff5f5;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/app/app.component.scss?ngResource ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6429CD;
  border: none;
  color: #DFDFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  height: 44px;
  padding: 0 24px;
  min-width: 160px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 250ms ease;
  box-shadow: 0 12px 24px rgba(100, 41, 205, 0.4);
}
.primary-btn:hover {
  box-shadow: 0 0 15px #6429CD, inset 0 0 20px rgba(189, 189, 255, 0.2);
  transform: translateY(-1px);
}
.primary-btn:active {
  transform: translateY(0);
}
.primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.primary-btn:disabled:hover {
  box-shadow: none;
  transform: none;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 2px solid #6429CD;
  color: #6429CD;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  height: 44px;
  padding: 0 24px;
  min-width: 140px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 250ms ease;
}
.secondary-btn:hover {
  background-color: #ebe7f8;
  box-shadow: 0 1px 3px rgba(100, 41, 205, 0.08);
}
.secondary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #6429CD;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 250ms ease;
}
.ghost-btn:hover {
  background-color: rgba(100, 41, 205, 0.08);
}

.input-form {
  margin: 4px 0;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #1A1A2E;
  border: 1.5px solid #cac0ec;
  background-color: #FFFFFF;
  border-radius: 50px;
  transition: all 250ms ease;
  outline: none;
}
.input-form::placeholder {
  color: #8888A0;
}
.input-form:focus {
  border-color: #6429CD;
  box-shadow: 0 0 0 3px rgba(100, 41, 205, 0.12);
}

/*# sourceMappingURL=styles.a44b3b7eafae8919.css.map*/