/* ベース設定 */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #222;
  text-align: center;
}

header {
  background-color: #222;
  color: #fff;
  padding: 1.5em 1em;
}

.header-content {
  max-width: 860px;
  margin: 0 auto;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.header-title .help-button {
  position: absolute;
  right: 0;
}

.help-button[title]:hover::after {
  display: none;
}

h1 {
  margin: 0;
  font-size: 2em;
}

p {
  margin: 0.5em 0;
}

/* ヘルプボタン */
.help-button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0 !important;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}

.help-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* タブナビゲーション */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #eee;
  padding: 0.5em;
}

.tab-button {
  background: #ddd;
  border: none;
  padding: 0.7em 1.2em;
  margin: 0.3em;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
  color: #333;
  text-shadow: none;
  letter-spacing: 0.02em;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tab-button:hover {
  background: #ccc;
  color: #222;
}

.tab-button.active {
  background: #4285f4;
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* メインコンテンツ */
main {
  max-width: 860px;
  margin: 2em auto;
  padding: 0 1em;
  text-align: left;
}

/* タブの中身 */
.tab-content {
  display: none;
  background: white;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

/* テキストエリア・入力欄 */
textarea,
input[type="text"],
input[type="search"],
input[type="url"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.6em;
  margin: 0.5em 0 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
}

/* ボタン */
.button-row {
  margin: 1em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}

button {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: normal;
  min-width: 150px;
}

button:hover {
  background-color: #3367d6;
}

/* 出力エリア */
.output-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
  min-height: 100px;
  font-family: monospace;
}

.clipboard-result {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.action {
  font-weight: bold;
  color: #4caf50;
}

.timestamp {
  color: #999;
}

.content-info {
  margin-top: 0.5rem;
}

.preview {
  background: #f5f5f5;
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  word-break: break-all;
}

.meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.message {
  padding: 0.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.message.error {
  background: #ffebee;
  color: #c62828;
}

.message.warning {
  background: #fff3e0;
  color: #ef6c00;
}

.message.info {
  background: #e3f2fd;
  color: #1565c0;
}

.info-text {
  margin-top: 0.5rem;
  text-align: center;
  color: #666;
}

.explanation-box {
  background: #f0f7ff;
  border: 1px solid #d0e3f0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.explanation-box h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1976d2;
  font-size: 1.1rem;
}

.explanation-box h3:first-child {
  margin-top: 0;
}

.explanation-box ul {
  margin: 0.75rem 0 0 0;
  padding-left: 1.5rem;
}

.explanation-box ol {
  margin: 0.75rem 0 0 0;
  padding-left: 1.5rem;
}

.explanation-box li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.explanation-box li:last-child {
  margin-bottom: 0;
}

.explanation-box strong {
  color: #1565c0;
  background: #e3f2fd;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

button[title] {
  position: relative;
}

button[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  margin-bottom: 0.5rem;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.action-explanation {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #4caf50;
}

/* Tutorial Styles */
.tutorial-box {
  background: #fff8e1;
  border: 2px solid #ffb74d;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.tutorial-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #e65100;
  font-size: 1.2rem;
}

.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #ffe0b2;
  transition: all 0.3s ease;
}

.step.completed {
  background: #e8f5e9;
  border-color: #4caf50;
}

.step.active {
  background: #e3f2fd;
  border-color: #1976d2;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.step-number {
  background: #ff9800;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step.completed .step-number {
  background: #4caf50;
}

.step.active .step-number {
  background: #1976d2;
}

.step-content {
  flex: 1;
}

.step-content p {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.step-content small {
  display: block;
  color: #666;
  margin-top: 0.25rem;
}

.sample-text {
  display: inline-block;
  background: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-family: monospace;
  cursor: pointer;
  user-select: all;
  transition: all 0.2s;
}

.sample-text:hover {
  background: #e0e0e0;
  border-color: #bbb;
}

.sample-text.selected {
  background: #bbdefb;
  border-color: #1976d2;
}

.tutorial-reset {
  background: #ff9800;
  margin-top: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tutorial-reset:hover {
  background: #f57c00;
}

.permission-notice {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  border-radius: 4px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.permission-notice strong {
  color: #e65100;
}

.security-note {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 4px;
  padding: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #0d47a1;
}

/* Watch Mode Styles */
.control-panel {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.watch-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  cursor: pointer;
}

.watch-toggle input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.interval-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.interval-selector select {
  padding: 0.25rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: auto;
}

.secondary-button {
  background-color: #6c757d !important;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
}

.secondary-button:hover {
  background-color: #5a6268 !important;
}

.stats-panel {
  background: #e9ecef;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.watch-log {
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dee2e6;
}

.log-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem;
  border-bottom: 1px solid #f1f3f4;
}

.log-entry:last-child {
  border-bottom: none;
}

.log-detection {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}

.log-error {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.log-start {
  background: #d1edff;
  border-left: 4px solid #0d6efd;
}

.log-stop {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.log-info {
  background: #e2e3e5;
  border-left: 4px solid #6c757d;
}

.log-time {
  font-size: 0.8rem;
  color: #6c757d;
  min-width: 80px;
  font-family: monospace;
}

.log-icon {
  font-size: 1.1rem;
  min-width: 24px;
}

.log-message {
  flex: 1;
  word-break: break-word;
}

.log-message code {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.85rem;
}

.preview-content {
  background: rgba(40, 167, 69, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  word-break: break-all;
  border-left: 3px solid #28a745;
  border: 1px solid #28a745;
}

.log-empty {
  text-align: center;
  color: #6c757d;
  padding: 2rem;
  font-style: italic;
}

.warning-text {
  color: #dc3545;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* 警告メッセージ */
.warning {
  color: #b20000;
  font-weight: bold;
  background: #fff0f0;
  border: 1px solid #faa;
  padding: 0.75em;
  border-radius: 5px;
  margin: 1em 0;
}

/* Tipsリスト */
.tips-list {
  list-style: disc;
  padding-left: 2em;
}

/* フッター */
footer {
  background: #eee;
  padding: 1em;
  font-size: 0.9em;
  margin-top: 3em;
}

footer a {
  color: #4285f4;
  text-decoration: none;
}

/* アコーディオンスタイル */
.accordion-section {
  margin-top: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: #e9ecef;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #495057;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #6c757d;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.accordion-content.open {
  max-height: 800px;
  padding: 1.5rem;
  overflow-y: auto;
}

.accordion-content .explanation-box {
  box-shadow: none;
  border: none;
  border-radius: 0;
}

/* ステップOKボタン */
.step-ok-button {
  background-color: #28a745 !important;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  min-width: auto;
}

.step-ok-button:hover {
  background-color: #218838 !important;
}

/* フィッシングフォーム風スタイル */
.phishing-form-container {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 8px;
}

.phishing-form {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.phishing-header {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.phishing-header .lock-icon {
  font-size: 1.5rem;
}

.phishing-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: normal;
}

.warning-badge {
  position: absolute;
  right: 1rem;
  background: #4caf50;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.phishing-content {
  padding: 1.5rem;
  background: #fafafa;
}

.phishing-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.phishing-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #1976d2;
  border-radius: 4px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s;
}

.phishing-input:focus {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
  outline: none;
}

.phishing-input::placeholder {
  color: #999;
  font-style: italic;
}

.phishing-hint {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.85rem;
}

.phishing-footer {
  background: #e3f2fd;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #1565c0;
  border-top: 1px solid #bbdefb;
}

.fake-secure, .fake-verified {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* お祝いメッセージ */
.celebration-message {
  margin-top: 1rem;
  padding: 1.5rem;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: 8px;
  animation: celebrationSlideIn 0.5s ease-out;
}

.celebration-message .clipboard-result {
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

@keyframes celebrationSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ClickFix攻撃デモスタイル */
.clickfix-demo {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.fake-error-dialog {
  background: white;
  border: 2px solid #dc3545;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  animation: errorPulse 2s infinite;
}

@keyframes errorPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5); }
}

.error-header {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.error-header .error-icon {
  font-size: 1.5rem;
  animation: flash 1s infinite;
}

@keyframes flash {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.error-header h3 {
  margin: 0;
  font-size: 1.1rem;
  flex: 1;
  text-align: center;
}

.urgent-badge {
  background: #ffc107;
  color: #212529;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { background: #ffc107; }
  50% { background: #ff6b6b; color: white; }
}

.error-content {
  padding: 1.5rem;
  background: #fff5f5;
}

.error-message {
  margin: 0 0 1rem 0;
  color: #721c24;
  font-size: 1rem;
  line-height: 1.5;
}

.error-details {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.4;
}

.error-actions {
  padding: 1rem 1.5rem;
  background: #f8d7da;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.fix-button {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: white !important;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  animation: buttonGlow 2s infinite;
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); }
  50% { box-shadow: 0 0 20px rgba(40, 167, 69, 0.8); }
}

.fix-button:hover {
  background: linear-gradient(135deg, #218838, #1e7e34) !important;
  transform: translateY(-2px);
}

.cancel-button {
  background: #6c757d !important;
  color: white !important;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.cancel-button:hover {
  background: #5a6268 !important;
}

/* 自動送信攻撃デモスタイル */
.autopaste-demo {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.dev-console-form {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  font-family: 'Courier New', 'Monaco', monospace;
}

.console-header {
  background: linear-gradient(135deg, #007acc, #005a9e);
  color: white;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.console-icon {
  font-size: 1.2rem;
}

.console-title {
  font-weight: bold;
  flex: 1;
}

.console-path {
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-family: monospace;
}

.console-content {
  padding: 1.5rem;
  background: #252526;
  color: #d4d4d4;
}

.console-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.prompt-symbol {
  color: #4ec9b0;
  font-weight: bold;
}

.prompt-text {
  color: #9cdcfe;
}

.console-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #4fc1ff;
  font-size: 0.9rem;
}

.console-input {
  width: 100% !important;
  padding: 0.8rem !important;
  border: 1px solid #3c3c3c !important;
  border-radius: 4px !important;
  font-size: 0.9rem !important;
  background: #1e1e1e !important;
  color: #d4d4d4 !important;
  font-family: 'Courier New', monospace !important;
  transition: all 0.3s !important;
  margin: 0 !important;
}

.console-input:focus {
  border-color: #007acc !important;
  box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.3) !important;
  outline: none !important;
  background: #2d2d30 !important;
}

.console-input::placeholder {
  color: #6a9955;
  font-style: italic;
}

.console-hint {
  display: block;
  margin-top: 0.5rem;
  color: #858585;
  font-size: 0.8rem;
}

.console-footer {
  background: #2d2d30;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #858585;
  border-top: 1px solid #3c3c3c;
}

.terminal-indicator, .secure-connection {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.terminal-indicator {
  color: #4ec9b0;
}

.secure-connection {
  color: #ce9178;
}

/* モーダルスタイル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  background: #1976d2;
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 !important;
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.help-section {
  margin-bottom: 1.5rem;
}

.help-section:last-child {
  margin-bottom: 0;
}

.help-section h3 {
  margin: 0 0 0.75rem 0;
  color: #1976d2;
  font-size: 1.1rem;
}

.help-section p {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
  text-align: left;
}

.help-section ul {
  margin: 0;
  padding-left: 1.5rem;
  text-align: left;
}

.help-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.help-section a {
  color: #1976d2;
  text-decoration: none;
}

.help-section a:hover {
  text-decoration: underline;
}
