/* Floundermode Dictionary - Easy Mode Styles */

/* Easy Mode Modal */
.easy-mode-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 600px;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 6px 6px 0 #000;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #1a1a1a;
  justify-content: center;
}

.easy-mode-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.easy-mode-modal .window-bar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 13px 13px 0 0;
  border-bottom: 2px solid #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.easy-mode-modal .window-button {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: #fff;
  border: 2px solid #000;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.easy-mode-modal .window-button:hover {
  background: linear-gradient(135deg, #ff3742 0%, #ff2f3a 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 12px rgba(255, 71, 87, 0.4);
}

.easy-mode-modal .window-button:active {
  transform: scale(0.95) rotate(0deg);
  background: linear-gradient(135deg, #ff2f3a 0%, #ff1a1a 100%);
}

/* Content Area */
.easy-mode-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  background: transparent;
  color: #1a1a1a;
}

/* Progress Bar */
.progress-container {
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .progress-container {
    margin-bottom: 1rem;
  }
}

.progress-bar {
  width: 100%;
  height: 20px;
  border: 3px solid #000;
  background: #f0f0f0;
  box-shadow: 3px 3px 0 #000;
  overflow: hidden;
  margin-bottom: 0.5rem;
  transition: background-color 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

.progress-fill {
  height: 100%;
  background: #ffe680;
  width: 0%;
  transition: width 0.3s ease;
  border-right: 2px solid #000;
}

.progress-text {
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  color: #666;
  transition: color 0.8s ease;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

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

.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.form-step p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.4;
  transition: color 0.8s ease;
}

@media (max-width: 600px) {
  .form-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .form-step p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}

/* Form Inputs */
.easy-mode-form input,
.easy-mode-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  resize: vertical;
  transition: box-shadow 0.2s ease, background-color 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

@media (max-width: 600px) {
  .easy-mode-form input,
  .easy-mode-form textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

.easy-mode-form input:focus,
.easy-mode-form textarea:focus {
  outline: none;
  box-shadow: 5px 5px 0 #000;
}

.easy-mode-form textarea {
  min-height: 100px;
}

@media (max-width: 600px) {
  .easy-mode-form textarea {
    min-height: 80px;
  }
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  transition: color 0.8s ease;
}

/* Duplicate Warning */
.duplicate-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  color: #856404;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
  animation: slideDown 0.3s ease;
}

/* Similar Term Warning */
.duplicate-warning.similar-warning {
  background: #e7f3ff;
  border: 2px solid #17a2b8;
  color: #0c5460;
}

/* Profanity Warning */
.profanity-warning {
  background: #f8d7da;
  border: 2px solid #dc3545;
  color: #721c24;
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  display: none;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-existing-btn {
  background: #ffc107;
  color: #856404;
  border: 1px solid #856404;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.view-existing-btn:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

.view-existing-btn:active {
  transform: translateY(0);
}

/* Similar Warning Button */
.similar-warning .view-existing-btn {
  background: #17a2b8;
  color: #fff;
  border: 1px solid #0c5460;
}

.similar-warning .view-existing-btn:hover {
  background: #138496;
}

/* Tag Input System */
.tag-input-container {
  position: relative;
  margin-bottom: 1rem;
}

.tag-input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.tag-input-wrapper input {
  flex: 1;
}

.tag-enter-btn {
  flex: 0 0 auto;
  border: 3px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  padding: 0.75rem;
}

.tag-enter-btn:hover {
  background: #ffe680;
  transform: translateY(-1px);
}

.tag-enter-btn:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 #000;
}

.tag-enter-btn:disabled {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.tag-enter-btn:disabled:hover {
  background: #f0f0f0;
  transform: none;
}

/* Tag Suggestions */
.tag-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.tag-suggestion {
  padding: 0.5rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.tag-suggestion:hover {
  background: #ffe680;
}

/* Selected Tags */
.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-height: 2rem;
}

.selected-tag {
  background: #e0e0e0;
  border: 2px solid #000;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.selected-tag .remove-tag {
  cursor: pointer;
  font-weight: bold;
  color: #666;
  transition: color 0.2s ease;
}

.selected-tag .remove-tag:hover {
  color: #000;
}

.tag-limit {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  border: 3px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  min-width: 120px;
  border-radius: 12px;
}

.prev-btn {
  align-self: flex-start;
}

.next-btn, .submit-btn {
  align-self: flex-end;
  margin-left: auto;
}

.btn-arrow {
  display: none;
  font-size: 1.2rem;
}

.btn-text {
  display: inline;
}

.nav-btn:hover {
  background: #ffe680;
  transform: translateY(-1px);
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 #000;
}

.nav-btn.submit-btn {
  background: #4CAF50;
  color: white;
}

.nav-btn.submit-btn:hover {
  background: #45a049;
}

/* Custom Alert Modal */
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 600px;
  max-height: 80vh;
  background: white;
  border: 4px solid black;
  box-shadow: 8px 8px 0 #000;
  z-index: 2000;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-alert.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.alert-header {
  background: #ff4d4d;
  color: white;
  padding: 0.75rem 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-content {
  padding: 1.5rem;
  font-family: "Roboto Mono", monospace;
  line-height: 1.4;
  overflow-y: auto;
  flex: 1;
}

.alert-actions {
  padding: 1rem 1.5rem;
  border-top: 2px solid #eee;
  text-align: center;
  flex-shrink: 0;
}

.alert-btn {
  padding: 0.5rem 1.5rem;
  border: 3px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 12px;
}

.alert-btn:hover {
  background: #ffe680;
  transform: translateY(-1px);
}

.alert-btn:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 #000;
}

/* Button styles for modal content */
.contribute-button {
  padding: 0.75rem 1.5rem;
  border: 3px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.easy-mode-button {
  background: #4CAF50;
  color: white;
}

.github-button {
  background: #f0f0f0;
  color: #333;
}

.contribute-button:hover {
  transform: translateY(-1px);
}

.easy-mode-button:hover {
  background: #45a049;
}

.github-button:hover {
  background: #e0e0e0;
}

.contribute-button:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 #000;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .easy-mode-modal {
    width: 95vw;
    max-height: 95vh;
  }
  
  .easy-mode-content {
    padding: 0.8rem;
  }
  
  .easy-mode-modal .window-bar {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }
  
  .form-navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .nav-btn {
    min-width: auto;
    width: 45px;
    height: 45px;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-text {
    display: none;
  }
  
  .btn-arrow {
    display: inline;
    font-size: 1.4rem;
  }
  
  .prev-btn {
    margin-right: auto;
  }
  
  .next-btn, .submit-btn {
    margin-left: auto;
  }
  
  .custom-alert {
    width: 95vw;
    max-width: 500px;
    max-height: 85vh;
  }
  
  .alert-content {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .alert-header {
    padding: 0.6rem 0.8rem;
  }
  
  .alert-actions {
    padding: 0.8rem;
  }
}

/* Dark Mode Styles for Easy Mode Modal */
body.dark-mode .easy-mode-modal {
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  border: 3px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 6px 6px 0 #333;
}

body.dark-mode .easy-mode-content {
  color: #fff;
}

body.dark-mode .form-step h3 {
  color: #fff;
}

body.dark-mode .form-step p {
  color: #ccc;
}

body.dark-mode .easy-mode-form input,
body.dark-mode .easy-mode-form textarea {
  background: #444;
  color: #f5f5f5;
  border: 3px solid #666;
}

body.dark-mode .easy-mode-form input:focus,
body.dark-mode .easy-mode-form textarea:focus {
  box-shadow: 5px 5px 0 #666;
}

body.dark-mode .char-counter {
  color: #ccc;
}

body.dark-mode .progress-bar {
  background: #444;
  border: 3px solid #666;
  box-shadow: 3px 3px 0 #666;
}

body.dark-mode .progress-text {
  color: #ccc;
}

body.dark-mode .tag-input-container input {
  background: #444;
  color: #f5f5f5;
  border: 3px solid #666;
}

body.dark-mode .tag-enter-btn {
  background: #555;
  color: #f5f5f5;
  border: 3px solid #666;
}

body.dark-mode .tag-enter-btn:hover {
  background: #666;
}

body.dark-mode .tag-suggestions {
  background: #444;
  border: 3px solid #666;
  box-shadow: 3px 3px 0 #666;
}

body.dark-mode .tag-suggestion {
  color: #f5f5f5;
}

body.dark-mode .tag-suggestion:hover {
  background: #555;
}

body.dark-mode .selected-tag {
  background: #555;
  color: #f5f5f5;
  border: 2px solid #666;
}

body.dark-mode .selected-tag .remove-tag {
  color: #ff6b6b;
}

body.dark-mode .selected-tag .remove-tag:hover {
  color: #ff4444;
}

body.dark-mode .tag-limit {
  color: #ccc;
}

body.dark-mode .nav-btn {
  background: #555;
  color: #f5f5f5;
  border: 3px solid #666;
  box-shadow: 3px 3px 0 #666;
}

body.dark-mode .nav-btn:hover {
  background: #666;
  box-shadow: 5px 5px 0 #666;
}

body.dark-mode .nav-btn:disabled {
  background: #333;
  color: #666;
  border: 3px solid #555;
  box-shadow: 3px 3px 0 #555;
}

body.dark-mode .custom-alert {
  background: #333;
  color: #f5f5f5;
  border: 4px solid #666;
  box-shadow: 8px 8px 0 #666;
}

body.dark-mode .alert-header {
  background: #222;
  color: #fff;
}

body.dark-mode .alert-content {
  color: #f5f5f5;
}

body.dark-mode .alert-btn {
  background: #555;
  color: #f5f5f5;
  border: 3px solid #666;
}

body.dark-mode .alert-btn:hover {
  background: #666;
}

/* PR Preview Modal */
.pr-preview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  max-width: 800px;
  max-height: 90vh;
  background: white;
  border: 4px solid black;
  box-shadow: 8px 8px 0 #000;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pr-preview-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.pr-preview-modal .window-bar {
  background: #4CAF50;
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
}

.pr-preview-content {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.pr-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.pr-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  color: #4CAF50;
}

.pr-header p {
  color: #666;
  font-size: 1rem;
}

.pr-section {
  margin-bottom: 2rem;
}

.pr-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  color: #333;
  letter-spacing: 1px;
}

.code-block {
  background: #f8f9fa;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  overflow: hidden;
  margin-bottom: 1rem;
}

.code-header {
  background: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.code-label {
  font-weight: bold;
}

.copy-btn {
  background: #ffe680;
  color: #000;
  border: 2px solid #000;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
  background: #ffdd33;
  transform: translateY(-1px);
}

.copy-btn:active {
  transform: translateY(0);
}

.code-block code,
.code-block pre {
  display: block;
  padding: 1rem;
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: transparent;
  border: none;
}

.next-steps {
  background: #f0f8ff;
  border: 2px solid #4CAF50;
  padding: 1rem;
  border-radius: 4px;
}

.next-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.next-steps a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

.next-steps a:hover {
  text-decoration: underline;
}

.next-steps code {
  background: #e8f5e8;
  padding: 0.2rem 0.4rem;
  border: 1px solid #4CAF50;
  font-family: "Roboto Mono", monospace;
  font-size: 0.85rem;
}

/* Automated Workflow Styles */
.automated-workflow {
  background: #f8f9ff;
  border: 2px solid #4CAF50;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.automated-workflow h5 {
  color: #4CAF50;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.automated-workflow ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.automated-workflow li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.automation-benefits {
  background: #e8f5e8;
  border: 1px solid #4CAF50;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.automation-benefits h5 {
  color: #2e7d32;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.automation-benefits ul {
  margin: 0;
  padding-left: 1.5rem;
}

.automation-benefits li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.manual-alternative {
  background: #fff3e0;
  border: 1px solid #ff9800;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.manual-alternative h5 {
  color: #e65100;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.manual-alternative p {
  margin: 0;
  font-size: 0.9rem;
  color: #bf360c;
}

.pr-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.pr-btn {
  padding: 0.75rem 1.5rem;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
}

.pr-btn.secondary {
  background: #f0f0f0;
  color: #333;
}

.pr-btn.primary {
  background: #4CAF50;
  color: white;
}

.pr-btn:hover {
  transform: translateY(-1px);
}

.pr-btn.secondary:hover {
  background: #e0e0e0;
}

.pr-btn.primary:hover {
  background: #45a049;
}

.pr-btn:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 #000;
}

/* Mobile Responsive for PR Preview */
@media (max-width: 600px) {
  .pr-preview-modal {
    width: 95vw;
    max-height: 95vh;
  }
  
  .pr-preview-content {
    padding: 1rem;
  }
  
  .pr-header h3 {
    font-size: 1.4rem;
  }
  
  .pr-section h4 {
    font-size: 1.1rem;
  }
  
  .code-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .copy-btn {
    align-self: flex-end;
  }
  
  .pr-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .pr-btn {
    width: 100%;
    text-align: center;
  }
}

/* Dark Mode Styles for PR Preview */
body.dark-mode .pr-preview-modal {
  background: #333;
  color: #f5f5f5;
  border: 4px solid #666;
  box-shadow: 8px 8px 0 #666;
}

body.dark-mode .pr-preview-modal .window-bar {
  background: #2e7d32;
}

body.dark-mode .pr-header {
  border-bottom: 2px solid #555;
}

body.dark-mode .pr-header h3 {
  color: #66bb6a;
}

body.dark-mode .pr-header p {
  color: #ccc;
}

body.dark-mode .pr-section h4 {
  color: #f5f5f5;
}

body.dark-mode .code-block {
  background: #444;
  border: 3px solid #666;
  box-shadow: 3px 3px 0 #666;
}

body.dark-mode .code-header {
  background: #222;
}

body.dark-mode .next-steps {
  background: #2c3e50;
  border: 2px solid #66bb6a;
}

body.dark-mode .next-steps a {
  color: #66bb6a;
}

body.dark-mode .next-steps code {
  background: #34495e;
  border: 1px solid #66bb6a;
  color: #f5f5f5;
}

body.dark-mode .pr-actions {
  border-top: 2px solid #555;
}

body.dark-mode .pr-btn {
  border: 3px solid #666;
  box-shadow: 3px 3px 0 #666;
}

body.dark-mode .pr-btn.secondary {
  background: #555;
  color: #f5f5f5;
}

body.dark-mode .pr-btn.primary {
  background: #2e7d32;
}

body.dark-mode .pr-btn.secondary:hover {
  background: #666;
}

body.dark-mode .pr-btn.primary:hover {
  background: #1b5e20;
}

/* Dark Mode Styles for Duplicate Warning */
body.dark-mode .duplicate-warning {
  background: #2c2820;
  border: 2px solid #ffc107;
  color: #ffd54f;
}

body.dark-mode .view-existing-btn {
  background: #ffa000;
  color: #1a1a1a;
  border: 1px solid #ffd54f;
}

body.dark-mode .view-existing-btn:hover {
  background: #ffb300;
}

/* Dark Mode Styles for Similar Warning */
body.dark-mode .duplicate-warning.similar-warning {
  background: #1e3a4a;
  border: 2px solid #20c997;
  color: #7dd3fc;
}

/* Dark Mode Styles for Profanity Warning */
body.dark-mode .profanity-warning {
  background: #2d1b1e;
  border: 2px solid #dc3545;
  color: #f1a2a8;
}

body.dark-mode .similar-warning .view-existing-btn {
  background: #20c997;
  color: #1a1a1a;
  border: 1px solid #7dd3fc;
}

body.dark-mode .similar-warning .view-existing-btn:hover {
  background: #1cb882;
}

/* Dark Mode Styles for Automated Workflow */
body.dark-mode .automated-workflow {
  background: #1e3a4a;
  border: 2px solid #66bb6a;
}

body.dark-mode .automated-workflow h5 {
  color: #66bb6a;
}

body.dark-mode .automation-benefits {
  background: #2c3e50;
  border: 1px solid #66bb6a;
}

body.dark-mode .automation-benefits h5 {
  color: #81c784;
}

body.dark-mode .manual-alternative {
  background: #2d1b1e;
  border: 1px solid #ff9800;
}

body.dark-mode .manual-alternative h5 {
  color: #ffb74d;
}

body.dark-mode .manual-alternative p {
  color: #ffcc80;
}
