/* [project]/src/components/StoreToggle.module.css [app-client] (css) */
.StoreToggle-module__jIDKlG__toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  width: 64px;
  height: 32px;
  transition: all var(--transition-normal);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.StoreToggle-module__jIDKlG__toggle:hover {
  border-color: var(--accent);
}

.StoreToggle-module__jIDKlG__track {
  pointer-events: none;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  font-size: 14px;
  display: flex;
  position: absolute;
  inset: 0;
}

.StoreToggle-module__jIDKlG__thumb {
  background: var(--accent);
  width: 26px;
  height: 26px;
  transition: transform var(--transition-normal);
  z-index: 1;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 2px 4px #0003;
}

.StoreToggle-module__jIDKlG__ios .StoreToggle-module__jIDKlG__thumb {
  background: #007aff;
  transform: translateX(32px);
}

.StoreToggle-module__jIDKlG__ios {
  border-color: #007aff;
}

/* [project]/src/components/RepoManager.module.css [app-client] (css) */
.RepoManager-module__YF5GrW__overlay {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.RepoManager-module__YF5GrW__modal {
  background: var(--card-bg);
  border: 1px solid var(--border);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  border-radius: 20px;
  max-height: 80vh;
  padding: 24px;
  overflow-y: auto;
}

.RepoManager-module__YF5GrW__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.RepoManager-module__YF5GrW__header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.RepoManager-module__YF5GrW__closeBtn {
  cursor: pointer;
  color: var(--text-secondary);
  background: none;
  border: none;
  font-size: 1.5rem;
}

.RepoManager-module__YF5GrW__addSection {
  gap: 12px;
  margin-bottom: 8px;
  display: flex;
}

.RepoManager-module__YF5GrW__input {
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--foreground);
  border-radius: 8px;
  flex: 1;
  padding: 10px 14px;
}

.RepoManager-module__YF5GrW__addBtn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 500;
}

.RepoManager-module__YF5GrW__error {
  color: #ef4444;
  margin-bottom: 12px;
  font-size: .875rem;
}

.RepoManager-module__YF5GrW__list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.RepoManager-module__YF5GrW__actionRow {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.RepoManager-module__YF5GrW__actionBtn {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.RepoManager-module__YF5GrW__actionBtn:hover {
  background: var(--bg-hover);
  color: var(--foreground);
}

.RepoManager-module__YF5GrW__primaryBtn {
  color: #fff;
  background: #a855f7;
  border: none;
  margin-left: auto;
}

.RepoManager-module__YF5GrW__primaryBtn:hover {
  color: #fff;
  background: #9333ea;
}

.RepoManager-module__YF5GrW__repoItem {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.RepoManager-module__YF5GrW__repoItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000001a;
}

.RepoManager-module__YF5GrW__repoIcon {
  background: var(--bg);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #ffffff1a;
}

.RepoManager-module__YF5GrW__repoInfo {
  flex: 1;
  min-width: 0;
}

.RepoManager-module__YF5GrW__repoTitleRow {
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  display: flex;
}

.RepoManager-module__YF5GrW__repoName {
  color: var(--foreground);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.05rem;
  font-weight: 600;
  overflow: hidden;
}

.RepoManager-module__YF5GrW__premiumLock {
  color: #fbbf24;
  font-size: .9rem;
}

.RepoManager-module__YF5GrW__repoStatsRow {
  color: var(--text-secondary);
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  display: flex;
}

.RepoManager-module__YF5GrW__statItem {
  align-items: center;
  gap: 4px;
  display: flex;
}

.RepoManager-module__YF5GrW__repoActions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.RepoManager-module__YF5GrW__iconBtn {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--foreground);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  display: flex;
}

.RepoManager-module__YF5GrW__iconBtn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.RepoManager-module__YF5GrW__removeBtn {
  color: #ef4444;
  background: #ef44441a;
  border: 1px solid #ef444433;
}

.RepoManager-module__YF5GrW__removeBtn:hover {
  color: #fff;
  background: #ef4444;
}

.RepoManager-module__YF5GrW__processingTag {
  color: #3b82f6;
  background: #3b82f626;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: .8rem;
  font-weight: 500;
  display: flex;
}

.RepoManager-module__YF5GrW__spinner {
  border: 2px solid #3b82f64d;
  border-top-color: #3b82f6;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: 1s linear infinite RepoManager-module__YF5GrW__spin;
}

@keyframes RepoManager-module__YF5GrW__spin {
  to {
    transform: rotate(360deg);
  }
}

.RepoManager-module__YF5GrW__featuredSection {
  background: linear-gradient(135deg, #2a113a, #1a0826);
  border: 1px solid #4a1d63;
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.RepoManager-module__YF5GrW__featuredHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.RepoManager-module__YF5GrW__featuredTitle {
  color: #fff;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
}

.RepoManager-module__YF5GrW__featuredTag {
  color: #d8b4fe;
  background: #a855f733;
  border: 1px solid #a855f74d;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 500;
}

.RepoManager-module__YF5GrW__featuredRepo {
  background: #0003;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  align-items: center;
  gap: 16px;
  padding: 16px;
  display: flex;
  box-shadow: 0 4px 20px #0003;
}

.RepoManager-module__YF5GrW__featuredRepoIcon {
  background: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  display: flex;
  box-shadow: 0 0 15px #ffffff1a;
}

.RepoManager-module__YF5GrW__featuredRepoName {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 600;
}

/*# sourceMappingURL=src_components_f463aae8._.css.map*/