.card h1 { margin-bottom: 4px; }

.dt-intro {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.dt-datetime-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}
.dt-datetime-row .dt-field { flex: 1; }

.dt-now-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  background: var(--accent-primary-dim);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.dt-now-btn:hover { background: rgba(124, 92, 255, 0.22); }

.dt-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.tt-zone-field { margin-bottom: 20px; }

.dt-field input, .dt-field select {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-primary);
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
}
.dt-field input:focus, .dt-field select:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 1px;
}

.wc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.wc-card {
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--accent-primary);
  border-radius: 14px;
  padding: 14px;
  background: var(--key-bg);
}

.wc-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* A custom chevron replaces the browser's native one (appearance: none
   hides it) since the native arrow's size/position varies by browser and
   clashes with the bold, card-title-like treatment here. */
.wc-zone-select {
  flex: 1;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  background-color: var(--panel);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23585c7b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 8px 30px 8px 12px;
  cursor: pointer;
}
.wc-zone-select:hover { border-color: var(--accent-primary); }
.wc-zone-select:focus { outline: 2px solid var(--accent-primary); outline-offset: 1px; }

.wc-remove-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  flex: 0 0 auto;
}
.wc-remove-btn:hover { background: var(--panel-border); color: var(--accent-error); }

.wc-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wc-time {
  font-family: var(--mono);
  font-size: 26px;
  color: var(--text-primary);
}

.wc-date {
  font-size: 13px;
  color: var(--text-muted);
}

.tt-day-badge {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-amber);
}

.wc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--panel-border);
  font-size: 12px;
  color: var(--text-muted);
}
.wc-meta strong { color: var(--text-primary); }

.wc-add-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  background: var(--accent-primary-dim);
  border: 1px dashed var(--accent-primary);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  width: 100%;
}
.wc-add-btn:hover { background: rgba(124, 92, 255, 0.22); }

.gc-info-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gc-info-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--accent-primary);
  background: var(--key-bg);
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gc-info-list strong { font-size: 13px; color: var(--text-primary); }
.gc-info-list span { font-size: 13px; line-height: 1.55; color: var(--text-muted); }

@media (max-width: 500px) {
  .wc-cards { grid-template-columns: 1fr; }
}
