/* Sajber Radar - Proverite svoj digitalni trag */
.dt-wrap {
  width: 100%;
}
.dt-lead {
  color: var(--text-muted, #9fb2c4);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Ime input */
.dt-name-box {
  background: rgba(0, 209, 209, 0.05);
  border: 1px solid rgba(0, 209, 209, 0.25);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}
.dt-name-box label {
  display: block;
  font-size: 0.9rem;
  color: var(--text, #e6edf3);
  margin-bottom: 0.5rem;
}
#dt-name {
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  color: var(--text, #e6edf3);
  font-size: 1rem;
}
#dt-name:focus {
  outline: none;
  border-color: var(--cyan, #00d1d1);
}
.dt-name-hint {
  font-size: 0.8rem;
  color: var(--text-muted, #9fb2c4);
  margin-top: 0.5rem;
}

/* Progress bar */
.dt-progress {
  margin-bottom: 1.5rem;
}
.dt-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.dt-bar-fill {
  height: 100%;
  width: 0;
  background: var(--cyan, #00d1d1);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.dt-bar-text {
  font-size: 0.85rem;
  color: var(--text-muted, #9fb2c4);
  margin-top: 0.5rem;
  text-align: right;
}

/* Sklopive sekcije */
.dt-sec {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.dt-sec-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 1rem 1.15rem;
  cursor: pointer;
  text-align: left;
  color: var(--text, #e6edf3);
  font-size: 1.05rem;
  font-weight: 600;
}
.dt-sec-head:hover {
  background: rgba(255, 255, 255, 0.03);
}
.dt-sec-num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan, #00d1d1);
  color: #06121f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.dt-sec-title {
  flex: 1 1 auto;
}
.dt-sec-caret {
  flex: 0 0 auto;
  color: var(--text-muted, #9fb2c4);
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}
.dt-sec.open .dt-sec-caret {
  transform: rotate(180deg);
}
.dt-sec-body {
  display: none;
  padding: 0 1.15rem 1.15rem;
}
.dt-sec.open .dt-sec-body {
  display: block;
}
.dt-sec-intro {
  color: var(--text-muted, #9fb2c4);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}

/* Checkbox stavke */
.dt-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  color: var(--text, #e6edf3);
  font-size: 0.92rem;
  line-height: 1.5;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dt-check:last-of-type {
  border-bottom: none;
}
.dt-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan, #00d1d1);
  cursor: pointer;
}
.dt-link {
  color: var(--cyan, #00d1d1);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.88rem;
}
.dt-link:hover {
  text-decoration: underline;
}
.dt-link-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.dt-sec-note {
  margin: 0.9rem 0 0;
  padding: 0.7rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(0, 209, 209, 0.4);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-muted, #9fb2c4);
  line-height: 1.5;
}

.dt-outro {
  margin-top: 1.75rem;
  padding: 1.15rem;
  background: rgba(0, 209, 209, 0.05);
  border-radius: 10px;
  color: var(--text, #e6edf3);
  line-height: 1.6;
  font-size: 0.95rem;
}
