/* [project]/src/app/charts/page.module.css [app-client] (css) */
.page-module__879Mna__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.page-module__879Mna__header {
  border-bottom: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.page-module__879Mna__titleSection h1 {
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: .25rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.page-module__879Mna__titleSection p {
  color: var(--text-secondary);
  font-size: .95rem;
}

.page-module__879Mna__headerActions {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.page-module__879Mna__runSelectContainer {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.page-module__879Mna__runSelectLabel {
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 500;
}

.page-module__879Mna__runSelect {
  background-color: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: .5rem;
  outline: none;
  padding: .5rem 2.25rem .5rem 1rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.page-module__879Mna__runSelect:hover {
  border-color: var(--card-border-focus);
  box-shadow: 0 0 10px #3b82f61a;
}

.page-module__879Mna__runSelect:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 12px #3b82f633;
}

.page-module__879Mna__compareRunAlert {
  color: var(--text-primary);
  background-color: #3b82f61a;
  border: 1px solid #3b82f640;
  border-radius: .75rem;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  padding: .75rem 1.25rem;
  font-size: .95rem;
  animation: .3s page-module__879Mna__fadeIn;
  display: flex;
}

@keyframes page-module__879Mna__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.page-module__879Mna__editBtn {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: .75rem;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 12px #3b82f633;
}

.page-module__879Mna__editBtn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.page-module__879Mna__editBtn:active {
  transform: translateY(0);
}

.page-module__879Mna__chartsGrid {
  flex-direction: column;
  gap: 2.5rem;
  display: flex;
}

.page-module__879Mna__chartCard {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 20px #00000026;
}

.page-module__879Mna__chartHeader {
  border-left: 4px solid var(--accent-color);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-left: .75rem;
  display: flex;
}

.page-module__879Mna__chartHeader h2 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__879Mna__badge {
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 700;
}

.page-module__879Mna__badgeBase {
  color: var(--text-secondary);
  background-color: #ffffff14;
  border: 1px solid #ffffff26;
}

.page-module__879Mna__badgePromo {
  color: var(--success-color);
  background-color: #10b9811a;
  border: 1px solid #10b98133;
}

.page-module__879Mna__chartContainer {
  background-color: #00000026;
  border: 1px solid #ffffff08;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 240px;
  display: flex;
  overflow: hidden;
}

.page-module__879Mna__chartImage {
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform .2s, filter .2s;
  display: block;
}

.page-module__879Mna__chartImage:hover {
  filter: brightness(1.05);
  transform: scale(1.01);
}

.page-module__879Mna__noChart {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: .95rem;
  font-style: italic;
}

.page-module__879Mna__zoomOverlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  background-color: #000000d9;
  justify-content: center;
  align-items: center;
  animation: .2s ease-out page-module__879Mna__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.page-module__879Mna__zoomContainer {
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 95%;
  max-height: 90%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 12px 40px #00000080;
}

.page-module__879Mna__zoomImage {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 85vh;
}

.page-module__879Mna__zoomClose {
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.page-module__879Mna__zoomClose:hover {
  background-color: #fff3;
  transform: scale(1.05);
}

.page-module__879Mna__editTitleBtn {
  color: var(--text-secondary);
  cursor: pointer;
  vertical-align: middle;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  transition: all .2s;
  display: inline-flex;
}

.page-module__879Mna__editTitleBtn:hover {
  color: var(--text-primary);
  border-color: var(--card-border-focus);
  background-color: #ffffff1a;
}

.page-module__879Mna__modalHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.page-module__879Mna__modalCloseBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  transition: color .2s;
  display: flex;
}

.page-module__879Mna__modalCloseBtn:hover {
  color: var(--text-primary);
}

.page-module__879Mna__modalScrapesList {
  flex-direction: column;
  gap: .5rem;
  max-height: 280px;
  margin-top: 1rem;
  padding-right: .25rem;
  display: flex;
  overflow-y: auto;
}

.page-module__879Mna__modalScrapeItem {
  border: 1px solid var(--card-border);
  cursor: pointer;
  background-color: #ffffff05;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  transition: all .2s;
  display: flex;
}

.page-module__879Mna__modalScrapeItem:hover {
  border-color: var(--card-border-focus);
  background-color: #ffffff0f;
  transform: translateX(2px);
}

.page-module__879Mna__modalActiveScrapeItem {
  box-shadow: 0 0 8px #3b82f633;
  border-color: var(--accent-color) !important;
  background-color: #3b82f626 !important;
}

.page-module__879Mna__modalScrapeTitle {
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 700;
}

.page-module__879Mna__modalScrapeDate {
  color: var(--text-secondary);
  margin-top: .1rem;
  font-size: .75rem;
}

.page-module__879Mna__modalScrapeCount {
  color: var(--accent-color);
  background-color: #3b82f61a;
  border-radius: .25rem;
  padding: .15rem .4rem;
  font-size: .8rem;
  font-weight: 600;
}

.page-module__879Mna__editCompareBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: .375rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: all .2s;
  display: flex;
}

.page-module__879Mna__editCompareBtn:hover {
  color: var(--text-primary);
  border-color: var(--card-border-focus);
  background-color: #ffffff1a;
}

.page-module__879Mna__modalOverlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  background-color: #000000bf;
  justify-content: center;
  align-items: center;
  animation: .2s page-module__879Mna__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.page-module__879Mna__modalContent {
  background-color: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  width: 90%;
  max-width: 450px;
  padding: 2rem;
  animation: .3s cubic-bezier(.34, 1.56, .64, 1) page-module__879Mna__scaleUp;
  box-shadow: 0 10px 30px #00000080;
}

.page-module__879Mna__modalContent h3 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__879Mna__modalContent p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  line-height: 1.5;
}

.page-module__879Mna__modalSelect {
  border: 1px solid var(--card-border);
  width: 100%;
  color: var(--text-primary);
  cursor: pointer;
  background-color: #00000040;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
}

.page-module__879Mna__modalFooter {
  justify-content: flex-end;
  gap: 1rem;
  display: flex;
}

.page-module__879Mna__modalCancelBtn {
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border-radius: .5rem;
  padding: .6rem 1.2rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.page-module__879Mna__modalCancelBtn:hover {
  color: var(--text-primary);
  background-color: #ffffff0d;
}

.page-module__879Mna__modalConfirmBtn {
  background-color: var(--accent-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  padding: .6rem 1.2rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 4px 12px #3b82f640;
}

.page-module__879Mna__modalConfirmBtn:hover {
  background-color: var(--accent-hover);
}

@keyframes page-module__879Mna__scaleUp {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.page-module__879Mna__activeRunTimestamp {
  color: var(--accent-color);
  opacity: .95;
  font-size: 1.5rem;
  font-weight: 600;
}

.page-module__879Mna__chartDownloadBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: all .2s;
  display: flex;
}

.page-module__879Mna__chartDownloadBtn:hover {
  color: var(--text-primary);
  border-color: var(--card-border-focus);
  background-color: #ffffff1a;
}

.page-module__879Mna__loaderContainer {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2;
  color: var(--text-secondary);
  background-color: #0f172aa6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
  font-weight: 500;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.page-module__879Mna__spinner {
  border: 3px solid #3b82f61a;
  border-top-color: var(--accent-color);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  animation: 1s linear infinite page-module__879Mna__spin;
}

.page-module__879Mna__chartImageVisible {
  opacity: 1;
  transition: opacity .3s;
}

.page-module__879Mna__chartImageHidden {
  opacity: 0;
  position: absolute;
}

@keyframes page-module__879Mna__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

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