@charset "UTF-8";
:root {
  --border-color: grey;
  --highlight-background: #DDD;
  --primary-color: #000;
}

.form-filters {
  padding: 20px;
  background-color: var(--highlight-background);
  border-radius: 10px;
  margin: 2rem 0;
}

body {
  width: 100%;
  height: 100%;
}

#no-login-container {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}

#no-login-container .login-container {
  border: 2px solid var(--border-color);
  padding: 2em;
  width: 100%;
  max-width: 400px;
}

.form-group {
  margin: 1rem 0;
}

.form-group label {
  display: block;
}

.btn-primary {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

.background-success {
  background-color: rgb(202, 228, 204);
}
.background-success .color-success {
  color: rgb(202, 228, 204);
}

.background-success {
  background-color: rgb(202, 228, 204);
}
.background-success .color-success {
  color: rgb(202, 228, 204);
}

.background-danger {
  background-color: rgb(228, 202, 202);
}
.background-danger .color-danger {
  color: rgb(228, 202, 202);
}

.copy-button {
  cursor: pointer;
}
.copy-button :hover {
  background: rgb(221, 238, 255);
}

.link-button {
  cursor: pointer;
}
.link-button :hover {
  text-decoration: underline;
  color: rgb(71, 109, 179);
}

:root {
  --circle-size: clamp(1.5rem, 5vw, 3rem);
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.order-content {
  width: 100%;
}
.order-content .overview-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  height: auto;
}
.order-content .overview-section .status-overview {
  width: 100%;
  height: 100%;
}
.order-content .overview-section .overview-section-mini-box {
  display: flex;
  flex-direction: row;
  width: 35%;
  height: 100%;
  justify-content: space-between;
}
.order-content .overview-section .c-stepper {
  display: flex;
  padding: 0;
  margin-top: 1rem;
}
.order-content .overview-section .c-stepper__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.order-content .overview-section .c-stepper__item.not-complete:before {
  border: solid 5px red;
}
.order-content .overview-section .c-stepper__item.complete:before {
  border: solid 5px green;
}
.order-content .overview-section .c-stepper__item:before {
  --size: 3rem;
  content: "";
  display: block;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  border: solid 3px red;
  opacity: 0.5;
  margin: 0 auto 1rem;
}
.order-content .overview-section .c-stepper__item:not(:last-child):after {
  content: "";
  position: relative;
  top: calc(var(--circle-size) / 2);
  width: calc(100% - var(--circle-size) - var(--spacing) * 2);
  left: calc(50% + var(--circle-size) / 2 + var(--spacing));
  height: 2px;
  background-color: #e0e0e0;
  order: -1;
}
.order-content .overview-section .c-stepper__title {
  font-weight: bold;
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 0.5rem;
}
.order-content .overview-section .c-stepper__desc {
  color: grey;
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding-left: var(--spacing);
  padding-right: var(--spacing);
}
.order-content .overview-section .wrapper {
  max-width: 1000px;
  margin: 2rem 0;
}
.order-content .overview-section body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 1rem;
}
.order-content .overview-section *,
.order-content .overview-section *:before,
.order-content .overview-section *:after {
  box-sizing: border-box;
}

.order-details-container .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.order-details-container .details-card {
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #fff;
}

.order-mkp-container .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.order-mkp-container .mkp-card {
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #fff;
}

.marketplace-filters {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.marketplace-filters .form-label {
  color: #333333;
}
.marketplace-filters .form-select,
.marketplace-filters .form-control {
  transition: border-color 0.3s, box-shadow 0.3s;
}
.marketplace-filters .form-select:focus,
.marketplace-filters .form-control:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 97, 0.25);
}
.marketplace-filters .form-check-input:checked {
  background-color: #ff6f61;
  border-color: #ff6f61;
}
.marketplace-filters .form-check-label {
  color: #555555;
}

.period-days-input {
  width: 40px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 2px 1px;
  font: inherit;
  font-weight: inherit;
  text-align: center;
  color: inherit;
  outline: none;
  /* hide browser spinner arrows */
  -moz-appearance: textfield;
}

.period-days-input::-webkit-outer-spin-button,
.period-days-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.period-days-input:focus {
  border-bottom-color: #0d6efd;
  color: #0d6efd;
}

/* Add styles for icons */
.bi {
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.toggle-section-btn {
  padding: 10px 20px;
  margin: 5px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-section-btn:hover {
  background-color: #e9ecef;
}

.toggle-section-btn.active {
  background-color: black;
  color: white;
  border-color: black;
}

.content-section {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: white;
}

.marketplace-link {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.marketplace-list-page-table-container .table tbody tr td {
  vertical-align: middle;
  cursor: pointer;
}

.table tbody tr td:last-child {
  cursor: default;
}

.dashboard-page {
  --dashboard-bg: #f4f8fb;
  --dashboard-panel: #ffffff;
  --dashboard-primary: #0f4c81;
  --dashboard-muted: #5d6d7e;
  --dashboard-highlight: #d8edf9;
  background: linear-gradient(160deg, #f8fbff 0%, var(--dashboard-bg) 45%, #eef4f7 100%);
  border-radius: 18px;
  padding: 1.25rem;
}

.dashboard-header {
  border-left: 4px solid var(--dashboard-primary);
  padding-left: 0.8rem;
}

.dashboard-title {
  color: var(--dashboard-primary);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.dashboard-subtitle {
  color: var(--dashboard-muted);
}

.dashboard-panel {
  background: var(--dashboard-panel);
  border: 1px solid #e2ebf3;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(22, 52, 87, 0.05);
}

.section-title {
  color: var(--dashboard-primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.dashboard-table thead th {
  background: #f0f6fc;
  color: var(--dashboard-primary);
  border-bottom: 1px solid #dae5f0;
}

.metric-pill {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--dashboard-highlight);
  color: var(--dashboard-primary);
  font-weight: 700;
}

.revenue-line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-right: 10px;
}

.currency-label {
  color: var(--dashboard-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .dashboard-page {
    padding: 0.9rem;
    border-radius: 12px;
  }
  .dashboard-title {
    font-size: 1.4rem;
  }
}
.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.w-50 {
  width: 50% !important;
}

.btn-outline-taugo {
  color: #ff6f61;
  border-color: #ff6f61;
}

.btn-primary-taugo {
  background-color: #ff6f61;
  border-color: #ff6f61;
  color: #fff;
}

.table-responsive {
  margin-top: 20px;
}

.overlay-container {
  position: relative;
  min-height: 160px;
}

.loader {
  text-align: center;
  font-size: 1.5rem;
  margin: 2rem 0;
}

.isActiveCell {
  background-color: rgb(202, 228, 204) !important;
}

.notActiveCell {
  background-color: rgb(243, 208, 206) !important;
}

.price-alert {
  background-color: #ffe5e5 !important;
  color: #b30000 !important;
  font-weight: bold;
}

.sync-alert {
  background-color: #ffe5e5 !important;
  color: #b30000 !important;
  font-weight: bold;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.not-found-shell {
  position: relative;
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.not-found-card {
  position: relative;
  width: min(760px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(22, 33, 47, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(23, 35, 52, 0.16);
  padding: clamp(1.6rem, 2.8vw, 2.8rem);
  text-align: center;
  backdrop-filter: blur(8px);
  animation: entrance 560ms ease-out;
}

.error-kicker {
  margin-bottom: 0.5rem;
  color: #ff6f61;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

.error-title {
  color: #16212f;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.error-message {
  color: #566273;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 50ch;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.action-btn {
  min-width: 190px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 33, 47, 0.18);
}

.btn.btn-primary {
  background: #16212f;
  border: none;
}

.helper-copy {
  margin-top: 1.1rem;
  color: #566273;
  font-size: 0.92rem;
}

.helper-copy span {
  font-weight: 700;
  color: #16212f;
}

@keyframes entrance {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .not-found-shell {
    min-height: calc(100vh - 210px);
    padding: 1.3rem 0.8rem;
  }
  .not-found-card {
    border-radius: 20px;
    padding: 1.4rem;
  }
  .action-btn {
    width: 100%;
  }
}
.login-container {
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.upload-section {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.upload-description {
  font-size: 14px;
  color: #495057;
  margin-bottom: 5px;
}

.upload-restriction {
  font-size: 14px;
  color: #dc3545;
  margin-bottom: 10px;
}

.upload-section input[type=file],
.upload-section input[type=text],
.upload-section input[type=date] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
}

.upload-section button {
  padding: 12px 25px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.upload-section button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.upload-section button:hover:not(:disabled) {
  background-color: #218838;
  transform: scale(1.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.upload-section button:active:not(:disabled) {
  background-color: #1e7e34;
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-tooltip {
  margin-top: 10px;
  font-size: 12px;
  color: #6c757d;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  padding: 8px;
  max-width: 50%;
}

.loader {
  font-size: 18px;
  color: #007bff;
  text-align: center;
  margin-top: 20px;
}

.fixed-width {
  max-width: 200px;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-link {
  color: gray;
}

.table {
  position: relative;
}
.table .sticky-header {
  position: sticky;
  top: 0;
  background-color: #fff !important; /* Forzar con !important */
  z-index: 999; /* Valor más alto para asegurar que esté por encima */
  border-bottom: 2px solid #dee2e6 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.table {
  overflow-x: auto;
}

/*# sourceMappingURL=main.css.map */
