/* [project]/src/app/manager/manager.module.css [app-client] (css) */
.manager-module__5NZ61G__loginContainer {
  background: #fafafa;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.manager-module__5NZ61G__loginForm {
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 350px;
  padding: 3rem;
  display: flex;
  box-shadow: 0 10px 15px #0000001a;
}

.manager-module__5NZ61G__loginForm h2 {
  text-align: center;
  margin: 0;
  font-family: system-ui;
}

.manager-module__5NZ61G__container {
  color: #111;
  background: #f4f4f5;
  height: 100vh;
  font-family: system-ui, sans-serif;
  display: flex;
}

.manager-module__5NZ61G__sidebar {
  background: #fff;
  border-right: 1px solid #e4e4e7;
  flex-direction: column;
  gap: 2rem;
  width: 300px;
  padding: 2rem 1.5rem;
  display: flex;
  overflow-y: auto;
}

.manager-module__5NZ61G__campaignList {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.manager-module__5NZ61G__navObj {
  text-align: left;
  cursor: pointer;
  color: #52525b;
  background: none;
  border: none;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: all .2s;
}

.manager-module__5NZ61G__navObj:hover {
  color: #111;
  background: #f4f4f5;
}

.manager-module__5NZ61G__navObj.manager-module__5NZ61G__active {
  color: #fff;
  background: #111;
  font-weight: 600;
}

.manager-module__5NZ61G__newCampaignSection {
  border-top: 1px solid #e4e4e7;
  margin-top: auto;
  padding-top: 2rem;
}

.manager-module__5NZ61G__newForm {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.manager-module__5NZ61G__input, .manager-module__5NZ61G__textarea {
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  width: 100%;
  padding: .75rem;
  font-family: inherit;
  font-size: .95rem;
}

.manager-module__5NZ61G__textarea {
  resize: vertical;
}

.manager-module__5NZ61G__button {
  color: #fff;
  cursor: pointer;
  background: #111;
  border: none;
  border-radius: 6px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: background .2s;
}

.manager-module__5NZ61G__button:hover {
  background: #333;
}

.manager-module__5NZ61G__button:disabled {
  cursor: not-allowed;
  background: #a1a1aa;
}

.manager-module__5NZ61G__mainContent {
  flex: 1;
  padding: 3rem;
  overflow-y: auto;
}

.manager-module__5NZ61G__statsGrid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  display: grid;
}

.manager-module__5NZ61G__statCard {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px #0000000d;
}

.manager-module__5NZ61G__statCard h4 {
  color: #71717a;
  margin: 0 0 .5rem;
  font-weight: 500;
}

.manager-module__5NZ61G__statCard p {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.manager-module__5NZ61G__progressTrack {
  background: #e4e4e7;
  border-radius: 4px;
  height: 8px;
  margin: .75rem 0 .25rem;
  overflow: hidden;
}

.manager-module__5NZ61G__progressFill {
  background: #16a34a;
  border-radius: 4px;
  height: 100%;
  transition: width .3s;
}

.manager-module__5NZ61G__tableContainer {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  margin-top: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px #0000000d;
}

.manager-module__5NZ61G__table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.manager-module__5NZ61G__table th, .manager-module__5NZ61G__table td {
  border-bottom: 1px solid #e4e4e7;
  padding: 1rem 1.5rem;
}

.manager-module__5NZ61G__table th {
  color: #52525b;
  background: #fafafa;
  font-weight: 600;
}

.manager-module__5NZ61G__table tr:last-child td {
  border-bottom: none;
}

.manager-module__5NZ61G__mono {
  color: #52525b;
  font-family: monospace;
}

.manager-module__5NZ61G__copyBtn {
  cursor: pointer;
  background: #f4f4f5;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: all .2s;
}

.manager-module__5NZ61G__copyBtn:hover {
  background: #e4e4e7;
}

.manager-module__5NZ61G__placeholder {
  color: #a1a1aa;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.25rem;
  display: flex;
}

.manager-module__5NZ61G__tabContainer {
  border-bottom: 2px solid #e4e4e7;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: .5rem;
  display: flex;
}

.manager-module__5NZ61G__tabBtn {
  color: #a1a1aa;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all .2s;
}

.manager-module__5NZ61G__tabBtn:hover {
  color: #52525b;
  background: #f4f4f5;
}

.manager-module__5NZ61G__activeTab {
  color: #111;
  background: #e4e4e7;
}

.manager-module__5NZ61G__detailCard {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px #0000000d;
}

.manager-module__5NZ61G__surveyDetail {
  border-top: 1px dashed #e4e4e7;
  margin-top: 1rem;
  padding-top: 1rem;
}

.manager-module__5NZ61G__answerRow {
  margin-bottom: .75rem;
}

.manager-module__5NZ61G__answerKey {
  color: #52525b;
  font-weight: 600;
}

.manager-module__5NZ61G__answerValue {
  color: #111;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
  margin-left: .5rem;
  padding: .2rem .5rem;
}

.manager-module__5NZ61G__surveyBadge {
  vertical-align: middle;
  border-radius: 999px;
  margin-left: 1rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.manager-module__5NZ61G__badgeComplete {
  color: #166534;
  background: #dcfce7;
}

.manager-module__5NZ61G__badgeIncomplete {
  color: #92400e;
  background: #fef3c7;
}

.manager-module__5NZ61G__qStatsCard {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  padding: 1rem;
  display: flex;
}

.manager-module__5NZ61G__scoreBadge {
  color: #fff;
  background: #111;
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

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