.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}
.table thead {
  background-color: #fafafa;
}
.table th,
.table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  white-space: nowrap;
}
.table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666666;
}
.table tbody tr:nth-child(even) {
  background-color: #fefefe;
}
.table tbody tr:hover {
  background-color: #ffffff;
}
.table-cell-mono {
  font-family: monospace;
  font-size: 12px;
}
.table-cell-right,
.table-header-right {
  text-align: right;
}
@media (max-width: 1100px) {
  .table th,
  .table td {
    padding: 8px 10px;
  }
}
html {
  height: 100%;
}
body {
  font-family: Poppins, sans-serif;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ececec;
}
.column {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
}
.row-to-column {
  display: flex;
  flex-direction: column;
}
.hide {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}
h1 {
  font-size: 52px;
  line-height: 1.1em;
}
h2 {
  font-size: 35px;
  line-height: 1em;
}
.separator {
  flex-grow: 1;
}
a {
  text-decoration: none;
  color: inherit;
}
.clickable {
  position: relative;
}
.clickable:after {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  cursor: pointer;
  z-index: 0;
}
@media (min-width: 1100px) {
  .row-to-column {
    flex-direction: row;
  }
  .reverse-column-mobile {
    flex-direction: row;
  }
}
.pacifico-cursive {
  font-family: 'Pacifico', cursive;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
}
.montserrat-regular {
  font-family: "Poppins", sans-serif;
}
.color-bg-main {
  background-color: #fafafa;
}
.color-bg-accent {
  background-color: #1ECAD3;
}
.color-bg-accent-hover {
  background-color: #2FE3C2;
}
.color-text-main {
  color: #333333;
}
.color-text-muted {
  color: #666666;
}
.color-text-accent {
  color: #1ECAD3;
}
.color-border-main {
  border-color: #e0e0e0;
}
.color-border-accent {
  border-color: #1ECAD3;
}
.color-shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.landing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.landing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-home {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333333;
  text-decoration: none;
  flex-shrink: 0;
}
.landing-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.landing-link {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.landing-link:hover {
  color: #1ECAD3;
}
.landing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-login {
  width: auto;
  padding: 0px 12px;
  height: 32px;
  background: #ffffff;
  color: #171717;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px #ebebeb;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.landing-login:hover {
  background: rgba(0, 0, 0, 0.05);
}
.landing-login:active {
  transform: none;
  opacity: 0.6;
}
.landing-login:focus {
  outline: none;
  box-shadow: none;
}
.landing-logout {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: underline;
  margin: 0 0 0 10px;
}
.landing-logout:hover {
  color: #1ECAD3;
}
.landing-signup {
  width: auto;
  padding: 0px 12px;
  height: 32px;
  background: #171717;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.landing-signup:hover {
  background: #383838;
}
.landing-signup:active {
  transform: translateY(0);
}
.landing-signup:focus {
  outline: none;
}
.landing-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.landing-hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333333;
  transition: all 0.3s ease;
  transform-origin: center;
}
.landing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.landing-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.landing-mobile-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.landing-mobile-link:hover {
  color: #1ECAD3;
}
.landing-overlay.active {
  opacity: 1;
  visibility: visible;
}
.landing-toggle.active .landing-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.landing-toggle.active .landing-hamburger-line:nth-child(2) {
  opacity: 0;
}
.landing-toggle.active .landing-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 1100px) {
  .landing-login {
    padding: 8px 12px;
    font-size: 13px;
  }
  .landing-signup {
    padding: 8px 12px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .landing-nav,
  .landing-actions {
    display: none;
  }
  .landing-toggle {
    display: flex;
  }
  .landing-container {
    padding: 1rem;
  }
}
.dashboard-view {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fafafa;
  padding: 20px 0 0 0;
}
@media (min-width: 1100px) {
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.menu-container {
  display: flex;
  align-items: center;
  padding: 1rem 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}
.menu-user-icon {
  font-size: 18px;
  border-radius: 100px;
  width: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-repo-trigger {
  width: fit-content;
  min-width: 120px;
  text-align: left;
  justify-content: flex-start;
  position: relative;
  padding: 0 32px 0 10px !important;
}
.menu-repo-trigger::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.menu-period-select {
  width: fit-content;
  margin: 0 0 0 10px;
}
.context-menu-item {
  padding: 10px 16px;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.context-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.context-menu-item:active {
  background-color: #ebebeb;
}
.menu-repo-pending-config-icon {
  color: #f59e0b;
  font-size: 12px;
  flex-shrink: 0;
}
.menu-repo-pending-ingestion-icon {
  color: #1ECAD3;
  font-size: 12px;
  flex-shrink: 0;
}
.menu-repo-dropdown-section {
  display: flex;
  flex-direction: column;
}
.menu-repo-dropdown-label {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  padding: 0 16px;
  margin: 0;
}
.menu-repo-dropdown-header-repo {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 0 16px 8px 16px;
  margin: 0;
}
.menu-subbar {
  background-color: #ececec;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}
.menu-subbar-content {
  display: flex;
  align-items: center;
  padding: 0 20px 2px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.menu-logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.menu-logo-brand-img {
  height: 26px;
  width: auto;
  object-fit: contain;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.modal-dialog {
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  flex: 1;
}
.modal-close {
  font-size: 18px;
  border-radius: 100px;
  width: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  color: #333333;
}
.modal-footer {
  justify-content: flex-end;
  display: flex;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .modal-container {
    padding: 0;
    align-items: stretch;
  }
  .modal-dialog {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
  .modal-header {
    padding: 16px 20px;
  }
  .modal-title {
    font-size: 18px;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-footer {
    padding: 16px 20px;
  }
}
.context-menu {
  position: fixed;
  z-index: 1001;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.context-menu.hide {
  opacity: 0;
  pointer-events: none;
}
.context-menu-content {
  color: #333333;
}
.dropdown {
  position: fixed;
  z-index: 1002;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-width: 90vw;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.dropdown.hide {
  opacity: 0;
  pointer-events: none;
}
.dropdown-header {
  flex-shrink: 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
}
.dropdown-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  color: #333333;
  min-height: 0;
}
.dropdown-footer {
  flex-shrink: 0;
  border-top: 1px solid #e0e0e0;
  color: #333333;
}
@media (max-height: 480px) {
  .dropdown {
    max-height: calc(100vh - 20px);
  }
}
.card {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 16px 20px;
  box-sizing: border-box;
}
.card.card-padding-large {
  padding: 20px;
}
.card.card-full {
  width: 100%;
  height: 100%;
}
.card.clickable {
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card.clickable:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.card.clickable:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.card-gap {
  gap: 20px;
}
.card-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  width: 100%;
}
@media (max-width: 768px) {
  .card-title {
    gap: 6px;
  }
}
.section {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.section-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333333;
}
.section-edit-button {
  background-color: #1ECAD3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.section-edit-button:hover {
  background-color: #2FE3C2;
}
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 24px;
}
.section-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.section-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-value {
  font-size: 16px;
  color: #333333;
  word-break: break-word;
}
.section-table {
  margin-top: 8px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333333;
}
.breadcrumb-item {
  color: #333333;
}
.breadcrumb-item-link {
  color: #666666;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.breadcrumb-item-link:hover {
  color: #2FE3C2;
  text-decoration: underline;
}
.breadcrumb-separator {
  color: #666666;
  margin: 0 4px;
}
.breadcrumb-title {
  font-weight: bold;
  font-size: 18px;
}
.labels-active {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  width: fit-content;
  background-color: #43A047;
}
.labels-inactive {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  width: fit-content;
  background-color: #E53935;
}
.labels-pro {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  color: #1ECAD3;
  white-space: nowrap;
  width: fit-content;
  background-color: transparent;
  border: 1px solid #1ECAD3;
  box-shadow: none;
}
.labels-low {
  padding: 4px 12px;
  border-radius: 5px;
  color: #5a7c3a;
  white-space: nowrap;
  width: fit-content;
  background-color: #e8f5e9;
}
.labels-medium {
  padding: 4px 12px;
  border-radius: 5px;
  color: #b8860b;
  white-space: nowrap;
  width: fit-content;
  background-color: #fff9e6;
}
.labels-high {
  padding: 4px 12px;
  border-radius: 5px;
  color: #c62828;
  white-space: nowrap;
  width: fit-content;
  background-color: #ffebee;
}
.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.loading-indicator.hide {
  opacity: 0;
  pointer-events: none;
}
.loading-indicator-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  z-index: 999;
}
.loading-indicator-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ECAD3;
}
.loading-indicator-spinner-small {
  font-size: 16px;
}
.loading-indicator-spinner-medium {
  font-size: 24px;
}
.loading-indicator-spinner-large {
  font-size: 32px;
}
.loading-indicator-message {
  color: #666666;
  text-align: center;
}
.changes {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: fit-content;
  flex-shrink: 0;
  position: absolute;
  right: 0px;
  color: #4f46e5;
  font-size: 12px;
  font-weight: bold;
  gap: 5px;
}
.changes-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.changes-arrow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.changes-arrow-up .changes-arrow-arrow::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  display: block;
  line-height: 1;
  color: currentColor;
}
.changes-arrow-down .changes-arrow-arrow::before {
  content: '\f063';
  font-family: 'Font Awesome 6 Free';
  display: block;
  line-height: 1;
  color: currentColor;
}
.changes-stable .changes-arrow-arrow::before {
  content: '\f068';
  font-family: 'Font Awesome 6 Free';
  display: block;
  line-height: 1;
  color: currentColor;
}
.changes-arrow-value {
  line-height: 1;
  white-space: nowrap;
  color: currentColor;
}
.changes-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  color: #666666;
  white-space: nowrap;
}
.changes-high {
  color: #dc2626;
}
.changes-medium {
  color: #f59e0b;
}
.changes-low {
  color: #059669;
}
.login-dialog {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.login-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.login-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.login-tab:hover {
  color: #1ECAD3;
  background: none;
}
.login-tab.active {
  color: #1ECAD3;
  border-bottom-color: #1ECAD3;
}
.login-tab:focus {
  outline: none;
  box-shadow: none;
}
.login-form {
  margin-bottom: 24px;
}
.login-form button {
  width: 100%;
}
.login-submit-btn {
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
}
.login-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}
.login-divider span {
  background: #fafafa;
  padding: 0 16px;
  color: #666666;
  font-size: 14px;
  position: relative;
}
.login-social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.login-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.login-social-btn:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
}
.login-social-btn:active {
  transform: translateY(1px);
}
.login-google-btn:hover {
  background: #f8f9fa;
  border-color: #4285f4;
}
.login-github-btn:hover {
  background: #f6f8fa;
  border-color: #24292e;
  color: #24292e;
}
.login-social-icon {
  flex-shrink: 0;
}
.login-switch {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.login-switch-text {
  color: #666666;
  font-size: 14px;
  margin-right: 8px;
}
@media (max-width: 1100px) {
  .login-dialog {
    max-width: none;
  }
  .login-tabs {
    margin-bottom: 20px;
  }
  .login-tab {
    padding: 10px 12px;
    font-size: 15px;
  }
  .login-social-btn {
    padding: 10px 18px;
    font-size: 15px;
  }
}
.onboard-dialog {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.onboard-dialog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.onboard-dialog-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.onboard-dialog-item:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #dee2e6;
}
.onboard-dialog-item:active:not(:disabled) {
  transform: translateY(1px);
}
.onboard-dialog-item:disabled {
  background: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}
.onboard-dialog-item:disabled:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
  transform: none;
}
.onboard-dialog-content {
  width: 100%;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.onboard-dialog-select-group {
  width: 100%;
}
.onboard-dialog-select-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333333;
  font-size: 14px;
}
.onboard-dialog-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fafafa;
  color: #333333;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  height: 48px;
}
.onboard-dialog-select:focus {
  outline: none;
  border-color: #1ECAD3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.onboard-dialog-select:hover {
  border-color: #c7c7c7;
}
.onboard-dialog-select:disabled {
  background-color: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}
.onboard-dialog-loading {
  text-align: center;
  padding: 24px;
  color: #666666;
  font-size: 14px;
}
.onboard-dialog-empty {
  text-align: center;
  padding: 24px;
  color: #666666;
  font-size: 14px;
}
.modal-dialog.onboard-dialog-modal {
  max-width: 500px;
  max-height: 500px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1100px) {
  .onboard-dialog {
    max-width: none;
  }
  .onboard-dialog-item {
    padding: 10px 18px;
    font-size: 15px;
  }
}
.repo-setting-dialog {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px auto;
}
.repo-setting-dialog-heading {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.repo-setting-dialog-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.repo-setting-dialog-button {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.repo-setting-dialog-button .fa-asterisk {
  color: #E53935;
  position: absolute;
  left: -15px;
}
.repo-setting-dialog-new-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
}
.repo-setting-dialog-new-info-warning {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999999;
}
.repo-setting-dialog-new-info-warning .fa-triangle-exclamation {
  color: #f59e0b;
  z-index: 1;
  margin: 0 5px 0 0;
}
.repo-setting-dialog-new-info-required {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999999;
}
.repo-setting-dialog-new-info-required .fa-asterisk {
  color: #E53935;
  margin: 0 4px 0 0;
}
.repo-setting-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.repo-setting-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  font-size: 14px;
}
.repo-setting-chip-text {
  color: #171717;
}
.repo-setting-chip-delete {
  padding: 0;
  min-width: auto;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.repo-setting-chip-delete i {
  font-size: 10px;
}
.repo-setting-chip-default {
  background: #f8f9fa;
  border-color: #e0e0e0;
  opacity: 0.6;
  cursor: default;
}
.repo-setting-chip-default .repo-setting-chip-text {
  color: #999999;
}
.repo-setting-add-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 16px 0 0 0;
}
.repo-setting-add-input {
  flex: 1;
}
.repo-setting-add-button {
  flex-shrink: 0;
}
.modal-dialog.repo-setting-dialog-modal {
  max-width: 600px;
  max-height: 500px;
  height: 100%;
}
@media (max-width: 1100px) {
  .repo-setting-dialog {
    max-width: none;
  }
}
.repo-setting-dialog-config-view {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 50px auto;
}
.repo-setting-dialog-config-view-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.repo-setting-dialog-config-view-back {
  flex-shrink: 0;
  padding: 8px;
  min-width: auto;
}
.repo-setting-dialog-config-view-heading {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  flex: 1;
}
.repo-setting-dialog-config-view-cancel,
.repo-setting-dialog-config-view-save {
  margin-left: 12px;
}
.repo-setting-dialog-config-view-cancel {
  margin-left: 0;
}
@media (max-width: 1100px) {
  .repo-setting-dialog-config-view {
    max-width: none;
  }
}
.confirmation-dialog {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.confirmation-description {
  margin-bottom: 24px;
  padding: 16px;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.confirmation-dialog .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.info-dialog {
  width: 100%;
  margin: 0 auto 20px auto;
}
.info-dialog-modal {
  width: 100%;
  max-width: 600px;
}
.info-dialog-message {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .info-dialog {
    max-width: none;
  }
}
.commits-dialog {
  max-height: 80%;
  height: 620px;
}
.commits-dialog-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.commits-dialog-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #666666;
}
.commits-dialog-page-size-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.commits-dialog-page-size {
  width: 60px;
}
.commits-dialog-prev,
.commits-dialog-next {
  cursor: pointer;
}
.commits-dialog-info {
  margin-left: auto;
}
.commits-dialog-loading,
.commits-dialog-empty {
  text-align: center;
  padding: 24px;
  color: #666666;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .commits-dialog {
    max-width: none;
  }
  .commits-dialog-table th,
  .commits-dialog-table td {
    padding: 8px 10px;
  }
}
.locking-dialog {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.locking-dialog-modal {
  width: 100%;
  max-width: 500px;
}
.locking-dialog-content {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  opacity: 0.8;
}
@media (max-width: 1100px) {
  .locking-dialog {
    max-width: none;
  }
}
.form-group input.error {
  border-color: #e63946;
}
.form-group input.error:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.3);
}
.form-error {
  color: #e63946;
  font-size: 14px;
  margin-top: 6px;
}
.home-view {
  padding: 94px 0 0 0;
}
.home-layout-chips {
  display: grid;
  grid-template-columns: 70fr 30fr;
  height: 486px;
}
.home-layout-content-main {
  width: 100%;
  height: 486px;
}
.home-title {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.home-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.home-layout-hero .card {
  flex: 1 1 0;
}
.home-layout-content-blocks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: hidden;
}
.home-stats {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.home-stat-label {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
}
.home-stat-value {
  font-size: 24px;
  color: #1ECAD3;
  font-weight: bold;
}
.home-graph {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  min-height: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.home-counters {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}
.home-counter {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.home-counter-label {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}
.home-counter-value {
  font-size: 32px;
  color: #1ECAD3;
  font-weight: bold;
}
.home-counter-button {
  margin-top: auto;
  padding: 10px 20px;
  background: #1ECAD3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.home-counter-button:hover {
  background: #2FE3C2;
}
@media (max-width: 1100px) {
  .home {
    padding: 15px;
  }
  .home-title {
    font-size: 24px;
  }
  .home-layout-chips {
    height: auto;
    grid-template-columns: 1fr;
  }
  .home-counters {
    flex-direction: column;
    gap: 15px;
  }
}
.menu-last-update {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu-last-update-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu-last-update-label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}
.menu-last-update-date {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.menu-last-update-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .menu-last-update-box {
    padding: 6px 12px;
  }
  .menu-last-update-label,
  .menu-last-update-date {
    font-size: 13px;
  }
}
.menu-toggle-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin: 0 10px 0 10px;
}
.menu-toggle-details-label {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.menu-toggle-details-label.disabled {
  color: #666666;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .menu-toggle-details-label {
    font-size: 13px;
  }
}
.home-devs-table-container {
  overflow-x: auto;
}
.home-devs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  table-layout: fixed;
}
.home-devs-table colgroup col {
  width: 130px;
}
.home-devs-table colgroup col.hide {
  width: 0;
}
.home-devs-table colgroup .home-devs-col-developer {
  min-width: 200px;
  width: auto;
}
.home-devs-table colgroup .home-devs-col-lines,
.home-devs-table colgroup .home-devs-col-difficulty,
.home-devs-table colgroup .home-devs-col-impact,
.home-devs-table colgroup .home-devs-col-rework {
  width: 150px;
}
.home-devs-table colgroup .home-devs-col-toggle {
  width: 32px;
}
.home-devs-table thead {
  display: table-header-group;
}
.home-devs-table thead th {
  text-align: left !important;
  padding: 8px 12px;
  white-space: nowrap;
  min-height: 20px;
  display: table-cell;
}
.home-devs-table thead .home-devs-header-title-row {
  border-bottom: 2px solid #e0e0e0;
}
.home-devs-table thead .home-devs-header-title-row th {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  letter-spacing: 0.5px;
  vertical-align: bottom;
  padding: 12px 12px 10px 12px;
  min-height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.home-devs-table thead .home-devs-header-title-row th.home-devs-sortable {
  user-select: none;
  transition: color 0.2s ease;
}
.home-devs-table thead .home-devs-header-title-row th.home-devs-sortable:hover {
  color: #333333;
}
.home-devs-table thead .home-devs-header-title-row th.home-devs-sortable-active {
  color: #1ECAD3;
}
.home-devs-sort-icon {
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.7;
}
.home-devs-table thead .home-devs-header-title-row th.home-devs-sortable-active .home-devs-sort-icon {
  opacity: 1;
}
.home-devs-table tbody tr[data-role="summary-row"] {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.home-devs-table tbody tr[data-role="summary-row"]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.home-devs-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-devs-dev {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.home-devs-dev-text {
  display: flex;
  flex-direction: column;
}
.home-devs-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ececec;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
  overflow: hidden;
}
.home-devs-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-devs-name {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.home-devs-commits {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}
.home-devs-metric-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.home-devs-metric-cell .changes {
  position: static;
  right: auto;
}
.home-devs-work-difficulty-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
  position: relative;
}
.home-devs-work-difficulty {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}
.home-devs-work-lines-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.home-devs-rework-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.home-devs-impact-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.home-devs-work-lines {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
}
.home-devs-metric-label-difficulty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  min-width: 44px;
  background-color: #2FE3C2;
}
.home-devs-toggle {
  text-align: right;
  width: 32px;
}
.home-devs-toggle-icon {
  font-size: 14px;
  color: #1ECAD3;
  transition: transform 0.15s ease;
}
.home-devs-row-expanded .home-devs-toggle-icon {
  transform: rotate(180deg);
}
.home-devs-details-row td {
  padding: 0 12px 12px 12px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #ffffff;
}
.home-devs-details {
  padding-top: 12px;
}
.home-devs-details-inner {
  border-radius: 8px;
  border: 1px dashed #e0e0e0;
  padding: 12px 14px;
  background-color: #fafafa;
}
.home-devs-details-header {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 8px;
}
.home-devs-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.home-devs-details-table th,
.home-devs-details-table td {
  padding: 4px 6px;
}
.home-devs-details-table th {
  text-align: left;
  font-weight: 600;
  color: #666666;
}
.home-devs-details-table td {
  color: #333333;
}
.home-devs-details-content-above {
  margin-bottom: 12px;
}
.home-devs-details-content-below {
  margin-top: 12px;
}
.home-devs-details-hard-section {
  margin: 12px 0;
  margin-left: 380px;
}
.home-devs-details-hard-header {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.home-devs-details-hard-table {
  border-collapse: collapse;
  font-size: 13px;
  display: inline-block;
}
.home-devs-details-hard-cell {
  padding: 6px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  vertical-align: middle;
}
.home-devs-table th.hide,
.home-devs-table td.hide {
  display: none;
}
.home-devs-table td[data-column="lines"],
.home-devs-table td[data-column="difficulty"],
.home-devs-table td[data-column="integration"],
.home-devs-table td[data-column="hard"],
.home-devs-table td[data-column="impact"],
.home-devs-table td[data-column="deepWork"],
.home-devs-table td[data-column="intensity"],
.home-devs-table td[data-column="churn"],
.home-devs-table td[data-column="hotspot"],
.home-devs-table td[data-column="rework"] {
  text-align: left;
}
.home-devs-hard-pct {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-direction: column;
}
.home-devs-hard-lines {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 1100px) {
  .home-devs-table {
    min-width: 100%;
  }
}
:root {
  --color-neutral-indigo: #4f46e5;
  --color-neutral-very-light: #e5e5e5;
  --color-neutral-overlay: rgba(255, 255, 255, 0.2);
}
.home-overview-content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.home-overview-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: fit-content;
  padding: 0;
  min-height: 177px;
}
.home-overview-gauge {
  position: relative;
  width: 100%;
  max-width: 230px;
}
.home-overview-gauge svg {
  width: 100%;
  height: auto;
  display: block;
}
.home-overview-gauge .home-overview-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  pointer-events: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 64px;
}
.home-overview-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  pointer-events: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 64px;
  gap: 8px;
}
.home-overview-value-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-overview-text .changes {
  position: static;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 20px;
}
.home-overview-percentage {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}
.home-overview-label {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.5px;
  white-space: nowrap;
  align-self: flex-start;
}
.home-overview-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  margin-top: 8px;
  white-space: nowrap;
  min-height: 18px;
}
.home-overview-chip-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
  flex-shrink: 0;
}
.home-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow-y: auto;
}
.home-chips-chip {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid rgba(224, 224, 224, 0.3);
  width: auto;
  min-width: 240px;
  flex: 0 0 auto;
}
.home-chips-chip-icon {
  font-size: 14px;
  color: #666666;
  flex-shrink: 0;
}
.home-chips-chip-value {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-chips-chip-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
  flex-shrink: 0;
}
.home-chips-chip-label {
  font-size: 11px;
  color: #666666;
}
@media (max-width: 1100px) {
  .home-chips {
    justify-content: flex-start;
  }
}
.home-integration {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.home-integration-content-status {
  display: flex;
  align-items: baseline;
  gap: 4px;
  height: 33px;
}
.home-integration-title-percent {
  font-size: 22px;
  font-weight: 700;
}
.home-integration-title-integrated {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
.home-integration-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-integration-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home-integration-metric-label {
  font-size: 12px;
  font-weight: 600;
  color: #999999;
  height: 18px;
}
.home-integration-bar {
  width: 200px;
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: #e0e0e0;
  position: relative;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.home-integration-bar-segment {
  display: flex;
  align-items: center;
  height: 100%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 0;
}
.home-integration-bar-integrated {
  background: linear-gradient(135deg, #4f46e5 0%, #291fd9 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.home-integration-bar-waiting {
  background: #e5e5e5;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .home-integration-card.card {
    padding: 12px 16px;
  }
  .home-integration-bar {
    width: 100%;
  }
}
.home-key-insights {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  height: 100%;
  width: min-content;
}
.home-key-insights-card {
  overflow-y: auto;
}
.home-key-insights-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-key-insights-item {
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}
.home-key-insights-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333333;
  font-weight: 700;
}
.home-key-insights-value {
  font-weight: 700;
  color: #333333;
}
@media (max-width: 768px) {
  .home-key-insights-card.card {
    padding: 12px 16px;
  }
}
.home-operation-state-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
}
.home-operation-state-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-operation-state-mode {
  font-size: 28px;
  font-weight: 600;
  color: #4f46e5;
}
.home-operation-state-change-profile-wrapper {
  position: relative;
  display: flex;
  min-height: 24px;
  flex-direction: column;
}
.home-operation-state-change-profile-wrapper .changes {
  position: relative;
  flex-direction: row;
  margin: 0 10px 0 0;
}
.home-operation-state-change-profile {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}
.home-operation-state-change-profile-shift {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .home-operation-state-mode {
    font-size: 28px;
  }
  .home-operation-state-change-profile {
    font-size: 15px;
  }
}
.home-structural-fragility-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 8px;
}
.home-structural-fragility-stats-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 18px;
  font-weight: 600;
}
.home-structural-fragility-contributors-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4f46e5;
  font-size: 18px;
  font-weight: 600;
}
.home-structural-fragility-active-text {
  color: #333333;
  font-weight: 400;
}
.home-structural-fragility-description-line {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.home-structural-fragility-changes-line {
  display: flex;
  flex-direction: row;
  position: relative;
}
.home-execution-cost-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
}
.home-execution-cost-state {
  font-size: 18px;
  font-weight: 600;
  color: #4f46e5;
}
.home-execution-cost-state-row {
  gap: 5px;
}
.home-execution-cost-driver {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.home-execution-cost-driver-row .changes {
  position: relative;
  flex-direction: row;
}
.home-execution-cost-driver-row {
  flex-direction: column;
}
.home-trend-content {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  box-sizing: border-box;
}
.home-trend-content .changes {
  position: relative;
  margin: 10px 0;
  top: 0px;
  left: 16px;
  z-index: 10;
  font-size: 16px;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  min-height: 16px;
}
#home-trend-chart {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
}
.home-trend-legend {
  display: flex;
  flex-direction: row;
  margin: 16px 0 0 16px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 20px;
}
.home-trend-legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.home-trend-legend-line {
  width: 32px;
  height: 2px;
  flex-shrink: 0;
}
.home-trend-legend-line-current {
  background-color: #4f46e5;
}
.home-trend-legend-line-previous {
  background-color: rgba(102, 102, 102, 0.5);
  background-image: repeating-linear-gradient(to right, rgba(102, 102, 102, 0.5) 0, rgba(102, 102, 102, 0.5) 5px, transparent 5px, transparent 10px);
}
.home-trend-legend-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home-trend-legend-label {
  font-size: 14px;
  color: #666666;
  white-space: nowrap;
  min-width: 150px;
  height: 21px;
}
.home-trend-legend-date {
  font-size: 12px;
  color: #999999;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .home-trend-content {
    height: 250px;
    padding: 12px;
  }
  .home-trend-legend {
    padding: 12px;
    padding-top: 0;
    gap: 16px;
  }
  .home-trend-legend-label {
    font-size: 12px;
  }
}
.list {
  padding: 20px;
}
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.list-title {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.list-create-button {
  background-color: #1ECAD3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.list-create-button:hover {
  background-color: #2FE3C2;
}
.list-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.list-content-container {
  display: block;
}
.list-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-card {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.list-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.list-card:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.list-card-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.list-card-chevron {
  color: #1ECAD3;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 1100px) {
  .list {
    padding: 15px;
  }
  .list-title {
    font-size: 24px;
  }
  .list-card {
    min-width: 100%;
  }
}
.waitlists-table-container {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.waitlists-card-name {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.waitlists-card-leads {
  display: flex;
  align-items: center;
  gap: 8px;
}
.waitlists-card-leads-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.waitlists-card-leads-dot-green {
  background-color: #43A047;
}
.waitlists-card-leads-dot-yellow {
  background-color: #2FE3C2;
}
.waitlists-card-leads-text {
  font-size: 14px;
  color: #333333;
}
.waitlists-card-status {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  width: fit-content;
}
.waitlists-card-status-active {
  background-color: #43A047;
}
.waitlists-card-status-inactive {
  background-color: #E53935;
}
.waitlists-card-slug {
  font-size: 14px;
  color: #333333;
}
.gridjs-thead {
  background-color: #1ECAD3;
}
.gridjs-thead th.gridjs-th {
  background-color: inherit !important;
}
.gridjs-thead td.gridjs-td {
  background-color: inherit !important;
}
.gridjs-pages {
  display: flex;
  gap: 8px;
}
.gridjs-pages button {
  width: auto;
  padding: 14px 24px;
  margin: 0;
  background: linear-gradient(135deg, #1ECAD3 0%, #2FE3C2 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(30, 202, 211, 0.3);
}
.gridjs-pages button:hover:not(:disabled) {
  background: linear-gradient(135deg, #2FE3C2 0%, #2FE3C2 100%);
  box-shadow: 0 6px 16px rgba(30, 202, 211, 0.4);
  transform: translateY(-2px);
}
.gridjs-pages button:active:not(:disabled) {
  transform: translateY(0);
}
.gridjs-pages button:focus:not(:disabled) {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 202, 211, 0.3), 0 6px 16px rgba(30, 202, 211, 0.4);
}
.gridjs-pages button:disabled {
  background: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
  transform: none;
}
.gridjs-pages button.gridjs-currentPage {
  background: linear-gradient(135deg, #1ECAD3 0%, #2FE3C2 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 202, 211, 0.3);
}
/* Override default HTML input styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0px 6px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fafafa;
  color: #333333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  height: 32px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1ECAD3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover {
  border-color: #c7c7c7;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #666666;
  opacity: 1;
}
input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
textarea:disabled,
select:disabled {
  background-color: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}
input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #1ECAD3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
input[type="checkbox"]:focus {
  outline: none;
  border-color: #1ECAD3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
input[type="checkbox"]:hover {
  border-color: #c7c7c7;
}
input[type="checkbox"]:disabled {
  background-color: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.6;
}
select[type="secondary"] {
  border: 2px solid transparent;
  background-color: #ececec;
  color: #333333;
}
select[type="secondary"]:focus {
  outline: none;
  border-color: #1ECAD3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
select[type="secondary"]:hover {
  border-color: #c7c7c7;
}
select[type="secondary"]::placeholder {
  color: #666666;
  opacity: 1;
}
select[type="secondary"]:disabled {
  background-color: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}
/* Override default HTML button styles */
button {
  width: auto;
  padding: 0px 12px;
  height: 32px;
  background: #171717;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.1s ease;
  box-sizing: border-box;
  user-select: none;
}
button:hover {
  background: #383838;
}
button:disabled {
  background: #f8f9fa;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}
button:disabled:hover {
  background: #f8f9fa;
  transform: none;
}
/* Large button class */
button.button-large {
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
}
button.button-large.cta {
  border-radius: 100px;
}
/* Secondary button type */
button[type="secondary"] {
  background: #ffffff;
  color: #171717;
  box-shadow: 0 0 0 1px #ebebeb;
}
button[type="secondary"]:hover {
  background: rgba(0, 0, 0, 0.05);
}
button[type="secondary"]:active {
  transform: none;
  opacity: 0.6;
}
button[type="secondary"]:focus {
  outline: none;
  box-shadow: none;
}
/* Underline button type */
button[type="underline"] {
  background: transparent;
  color: #1ECAD3;
  padding: 8px 12px;
  text-decoration: underline;
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  box-shadow: none;
}
button[type="underline"]:hover {
  background: transparent;
  color: #2FE3C2;
  opacity: 0.8;
  box-shadow: none;
}
button[type="underline"]:active {
  transform: none;
  opacity: 0.6;
}
button[type="underline"]:focus {
  outline: none;
  box-shadow: none;
}
button[type="context"] {
  background: transparent;
  color: #333333;
  padding: 8px 12px;
  border-radius: 0;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  box-shadow: none;
}
button[type="context"]:hover {
  background: transparent;
  color: #2FE3C2;
  opacity: 0.8;
  box-shadow: none;
}
button[type="context"]:active {
  transform: none;
  opacity: 0.6;
}
button[type="context"]:focus {
  outline: none;
  box-shadow: none;
}
.form-group {
  margin-bottom: 20px;
}
.form-group-row {
  align-items: center;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333333;
  font-size: 14px;
}
.form-group.form-group-row label {
  margin: 0 !important;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  color: #333333;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.form-group input:focus {
  outline: none;
  border-color: #1ECAD3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.form-group input[type="checkbox"] {
  width: auto;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #1ECAD3;
}
/* Responsive adjustments */
@media (max-width: 1100px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 12px;
  }
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"] {
    padding: 12px 20px;
    font-size: 15px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group input {
    padding: 10px 14px;
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  button[type="secondary"] {
    padding: 8px 12px;
    font-size: 13px;
  }
}
@font-face {
  font-display: swap;
}
