:root[data-theme="dark"] p:not(#footer p),
:root[data-theme="dark"] li:not(#footer li),
:root[data-theme="dark"] span:not(#footer span) {
  color: #ffffff !important;
}

:root[data-theme="light"] p:not(#footer p),
:root[data-theme="light"] li:not(#footer li),
:root[data-theme="light"] span:not(#footer span) {
  color: #444444 !important;
}




/* پاراگراف‌ها بعد از تیترهای اصلی - لایت مود */
/* بخش‌ها - حالت روشن */
:root[data-theme="light"] .article-content .article-section {
  background-color: rgba(13, 110, 253, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease;
}

/* بخش‌های زوج سبز - حالت روشن */
:root[data-theme="light"] .article-content .article-section:nth-of-type(even) {
  background-color: rgba(0, 200, 83, 0.05);
}

/* بخش‌ها - حالت تاریک */
:root[data-theme="dark"] .article-content .article-section {
  background-color: rgba(13, 110, 253, 0.15);
  color: #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* بخش‌های زوج سبز - حالت تاریک */
:root[data-theme="dark"] .article-content .article-section:nth-of-type(even) {
  background-color: rgba(0, 200, 83, 0.15);
}

