/*
Theme Name: Webnovel Theme
Description: A modern, mobile-friendly WordPress theme for web novels with user management, reading progress tracking, and community features.
Version: 1.0
Author: Your Name
*/

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1f2937;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode body styles */
html.dark body {
  background-color: #111827;
  color: #f9fafb;
}

/* Custom Components */
.webnovel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Novel Card Styles */
.novel-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

html.dark .novel-card {
  background: #1f2937;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.novel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

html.dark .novel-card:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
}

.novel-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.novel-card-content {
  padding: 1.5rem;
}

.novel-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
  transition: color 0.3s ease;
}

html.dark .novel-card-title {
  color: #f9fafb;
}

.novel-card-author {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

html.dark .novel-card-author {
  color: #d1d5db;
}

.novel-card-excerpt {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

html.dark .novel-card-excerpt {
  color: #d1d5db;
}

.novel-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

html.dark .novel-card-meta {
  color: #9ca3af;
}

/* Chapter List Styles */
.chapter-list {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

html.dark .chapter-list {
  background: #1f2937;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.chapter-item {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease, border-color 0.3s ease;
}

html.dark .chapter-item {
  border-bottom: 1px solid #374151;
}

.chapter-item:hover {
  background-color: #f9fafb;
}

html.dark .chapter-item:hover {
  background-color: #374151;
}

.chapter-item:last-child {
  border-bottom: none;
}

.chapter-item.read {
  background-color: #f0f9ff;
  border-left: 4px solid #3b82f6;
}

html.dark .chapter-item.read {
  background-color: #1e3a8a;
  border-left: 4px solid #60a5fa;
}

.chapter-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #8b5cf6;
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 1rem;
}

.chapter-title {
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

html.dark .chapter-title {
  color: #f9fafb;
}

.chapter-title:hover {
  color: #8b5cf6;
}

html.dark .chapter-title:hover {
  color: #a78bfa;
}

.chapter-date {
  color: #6b7280;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

html.dark .chapter-date {
  color: #d1d5db;
}

/* Reading Interface */
.reading-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

html.dark .reading-header {
  background: #1f2937;
  border-bottom: 1px solid #374151;
}

.reading-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reading-control-btn {
  padding: 0.5rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 0.375rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

html.dark .reading-control-btn {
  background-color: #374151;
  color: #d1d5db;
}

.reading-control-btn:hover {
  background-color: #e5e7eb;
}

html.dark .reading-control-btn:hover {
  background-color: #4b5563;
}

.chapter-content {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  font-size: 18px;
  line-height: 1.8;
  transition: background-color 0.3s ease;
}

html.dark .chapter-content {
  background: #1f2937;
  color: #f9fafb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.chapter-content p {
  margin-bottom: 1.5rem;
}

.chapter-content h1,
.chapter-content h2,
.chapter-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: inherit;
}

/* Navigation Styles */
.chapter-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #8b5cf6;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-button:hover {
  background-color: #7c3aed;
  transform: translateY(-1px);
}

.nav-button.secondary {
  background-color: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
}

html.dark .nav-button.secondary {
  color: #a78bfa;
  border-color: #a78bfa;
}

.nav-button.secondary:hover {
  background-color: #8b5cf6;
  color: white;
}

html.dark .nav-button.secondary:hover {
  background-color: #a78bfa;
  color: #1f2937;
}

/* User Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dashboard-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

html.dark .dashboard-card {
  background: #1f2937;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.dashboard-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
  transition: color 0.3s ease;
}

html.dark .dashboard-card h3 {
  color: #f9fafb;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: border-color 0.3s ease;
}

html.dark .stat-item {
  border-bottom: 1px solid #374151;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: #6b7280;
  transition: color 0.3s ease;
}

html.dark .stat-label {
  color: #d1d5db;
}

.stat-value {
  font-weight: 600;
  color: #8b5cf6;
  transition: color 0.3s ease;
}

html.dark .stat-value {
  color: #a78bfa;
}

/* Rating System */
.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star:hover,
.star.active {
  color: #fbbf24;
}

/* Search Interface */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: white;
  color: #1f2937;
  transition: all 0.2s ease;
}

html.dark .search-input {
  background: #374151;
  border-color: #4b5563;
  color: #f9fafb;
}

.search-input:focus {
  outline: none;
  border-color: #8b5cf6;
}

.search-input::placeholder {
  color: #9ca3af;
}

html.dark .search-input::placeholder {
  color: #6b7280;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  max-height: 400px;
  overflow-y: auto;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

html.dark .search-results {
  background: #1f2937;
  border-color: #374151;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
}

.search-result-item {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.3s ease;
}

html.dark .search-result-item {
  border-bottom: 1px solid #374151;
}

.search-result-item:hover {
  background-color: #f9fafb;
}

html.dark .search-result-item:hover {
  background-color: #374151;
}

.search-result-item:last-child {
  border-bottom: none;
}

/* Genre Tags */
.genre-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #ddd6fe;
  color: #5b21b6;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

html.dark .genre-tag {
  background-color: #4c1d95;
  color: #c4b5fd;
}

.genre-tag:hover {
  background-color: #8b5cf6;
  color: white;
}

html.dark .genre-tag:hover {
  background-color: #a78bfa;
  color: #1f2937;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-ongoing {
  background-color: #dcfce7;
  color: #166534;
}

html.dark .status-ongoing {
  background-color: #14532d;
  color: #bbf7d0;
}

.status-completed {
  background-color: #dbeafe;
  color: #1e40af;
}

html.dark .status-completed {
  background-color: #1e3a8a;
  color: #bfdbfe;
}

.status-hiatus {
  background-color: #fef3c7;
  color: #92400e;
}

html.dark .status-hiatus {
  background-color: #92400e;
  color: #fef3c7;
}

/* Comments Section */
.comments-section {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  transition: background-color 0.3s ease;
}

html.dark .comments-section {
  background: #1f2937;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.comment-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: border-color 0.3s ease;
}

html.dark .comment-item {
  border-bottom: 1px solid #374151;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-author {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

html.dark .comment-author {
  color: #f9fafb;
}

.comment-date {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

html.dark .comment-date {
  color: #d1d5db;
}

.comment-content {
  color: #374151;
  line-height: 1.6;
  transition: color 0.3s ease;
}

html.dark .comment-content {
  color: #d1d5db;
}

/* Form Styles */
.webnovel-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

html.dark .webnovel-form {
  background: #1f2937;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

html.dark .form-label {
  color: #f9fafb;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  background: white;
  color: #1f2937;
  transition: all 0.2s ease;
}

html.dark .form-input,
html.dark .form-textarea,
html.dark .form-select {
  background: #374151;
  border-color: #4b5563;
  color: #f9fafb;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

html.dark .form-input::placeholder,
html.dark .form-textarea::placeholder {
  color: #6b7280;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
}

.form-button {
  background-color: #8b5cf6;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-button:hover {
  background-color: #7c3aed;
}

.form-button:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification.success {
  background-color: #10b981;
}

.notification.error {
  background-color: #ef4444;
}

.notification.warning {
  background-color: #f59e0b;
}

.notification.info {
  background-color: #3b82f6;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e5e7eb;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

html.dark .reading-progress {
  background-color: #374151;
}

.reading-progress-bar {
  height: 100%;
  background-color: #8b5cf6;
  transition: width 0.1s ease;
}

/* WooCommerce Button Styles */
.checkout-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem !important;
  background: linear-gradient(to right, #8b5cf6, #3b82f6) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  min-height: 48px !important;
}

.checkout-button:hover {
  background: linear-gradient(to right, #7c3aed, #2563eb) !important;
  transform: translateY(-1px) !important;
  color: white !important;
  text-decoration: none !important;
}

.checkout-button:focus {
  outline: 2px solid #8b5cf6 !important;
  outline-offset: 2px !important;
}

/* WooCommerce Place Order Button */
#place_order {
  width: 100% !important;
  background: linear-gradient(to right, #8b5cf6, #3b82f6) !important;
  color: white !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  transform: none !important;
  min-height: 56px !important;
}

#place_order:hover {
  background: linear-gradient(to right, #7c3aed, #2563eb) !important;
  transform: scale(1.02) !important;
}

#place_order:focus {
  outline: 2px solid #8b5cf6 !important;
  outline-offset: 2px !important;
}

/* Payment Method Styling - FIXED DUPLICATION */
.woocommerce-checkout-payment .wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.woocommerce-checkout-payment .wc_payment_method {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.5rem !important;
  padding: 1rem !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

html.dark .woocommerce-checkout-payment .wc_payment_method {
  background: #374151 !important;
  border-color: #4b5563 !important;
}

.woocommerce-checkout-payment .wc_payment_method:hover {
  background: #f3f4f6 !important;
  border-color: #8b5cf6 !important;
}

html.dark .woocommerce-checkout-payment .wc_payment_method:hover {
  background: #4b5563 !important;
}

.woocommerce-checkout-payment .wc_payment_method input[type="radio"] {
  width: 1rem !important;
  height: 1rem !important;
  color: #8b5cf6 !important;
  background: #f9fafb !important;
  border-color: #d1d5db !important;
  margin-right: 0.75rem !important;
}

html.dark .woocommerce-checkout-payment .wc_payment_method input[type="radio"] {
  background: #374151 !important;
  border-color: #4b5563 !important;
}

.woocommerce-checkout-payment .wc_payment_method label {
  font-weight: 500 !important;
  color: #1f2937 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
}

html.dark .woocommerce-checkout-payment .wc_payment_method label {
  color: #f9fafb !important;
}

.woocommerce-checkout-payment .payment_box {
  margin-top: 0.75rem !important;
  padding: 0.75rem !important;
  background: white !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.375rem !important;
}

html.dark .woocommerce-checkout-payment .payment_box {
  background: #1f2937 !important;
  border-color: #374151 !important;
  color: #f9fafb !important;
}

/* Chapter Purchase Button Styles */
#purchase-chapter-fragment-btn {
  width: 100% !important;
  padding: 0.75rem 1.5rem !important;
  background: linear-gradient(to right, #f59e0b, #d97706) !important;
  color: white !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-size: 1rem !important;
}

#purchase-chapter-fragment-btn:hover {
  background: linear-gradient(to right, #d97706, #b45309) !important;
  transform: translateY(-1px) !important;
}

#purchase-chapter-fragment-btn:focus {
  outline: 2px solid #f59e0b !important;
  outline-offset: 2px !important;
}

#purchase-chapter-fragment-btn:disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  transform: none !important;
}

#purchase-chapter-parchment-btn {
  width: 100% !important;
  padding: 0.75rem 1.5rem !important;
  background: linear-gradient(to right, #8b5cf6, #7c3aed) !important;
  color: white !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-size: 1rem !important;
}

#purchase-chapter-parchment-btn:hover {
  background: linear-gradient(to right, #7c3aed, #6d28d9) !important;
  transform: translateY(-1px) !important;
}

#purchase-chapter-parchment-btn:focus {
  outline: 2px solid #8b5cf6 !important;
  outline-offset: 2px !important;
}

#purchase-chapter-parchment-btn:disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .webnovel-container {
    padding: 0 0.5rem;
  }

  .novel-card-content {
    padding: 1rem;
  }

  .chapter-content {
    padding: 1rem;
    font-size: 16px;
  }

  .chapter-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-button {
    width: 100%;
    justify-content: center;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reading-controls {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .search-container {
    max-width: 100%;
  }

  .checkout-button {
    width: 100% !important;
    padding: 1rem !important;
  }
}

@media (max-width: 480px) {
  .novel-card-content {
    padding: 0.75rem;
  }

  .chapter-content {
    padding: 0.75rem;
    font-size: 14px;
  }

  .webnovel-form {
    padding: 1rem;
  }

  .notification {
    left: 0.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .reading-header,
  .chapter-navigation,
  .comments-section {
    display: none;
  }

  .chapter-content {
    box-shadow: none;
    padding: 0;
  }

  body {
    background: white;
    color: black;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
.nav-button:focus,
.form-button:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .novel-card,
  .chapter-list,
  .dashboard-card {
    border: 2px solid;
  }

  .nav-button,
  .form-button {
    border: 2px solid;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Additional dark mode utilities */
html.dark .bg-white {
  background-color: #1f2937 !important;
}

html.dark .text-gray-900 {
  color: #f9fafb !important;
}

html.dark .text-gray-800 {
  color: #f3f4f6 !important;
}

html.dark .text-gray-700 {
  color: #e5e7eb !important;
}

html.dark .text-gray-600 {
  color: #d1d5db !important;
}

html.dark .text-gray-500 {
  color: #9ca3af !important;
}

html.dark .border-gray-200 {
  border-color: #374151 !important;
}

html.dark .border-gray-300 {
  border-color: #4b5563 !important;
}

html.dark .bg-gray-50 {
  background-color: #374151 !important;
}

html.dark .bg-gray-100 {
  background-color: #4b5563 !important;
}

html.dark .bg-gray-200 {
  background-color: #6b7280 !important;
}
/* DARK MODE ZORLA UYGULAMA - GEÇİCİ ÇÖZÜM */
html.dark .p-4:hover,
html.dark .hover\:bg-gray-50:hover,
html.dark [class*="hover:bg-gray-50"]:hover {
  background-color: #374151 !important;
}

html.dark .bg-blue-50,
html.dark [class*="bg-blue-50"] {
  background-color: rgba(30, 58, 138, 0.2) !important;
}

/* Tüm hover durumları için dark mode override */
html.dark *:hover {
  transition: all 0.3s ease !important;
}

/* Debug için - dark mode aktifken border ekle */
html.dark body {
  border-top: 3px solid #8b5cf6 !important;
}