/* Custom styles - Tailwind utilities bu dosyada değil, tailwind.css'de */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #E60000;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}

/* Haber İçerik Stilleri */
.haber-content p {
  margin-bottom: 1em;
}

.haber-content h1,
.haber-content h2,
.haber-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #1F2937;
}

.haber-content h1 {
  font-size: 1.875rem;
}

.haber-content h2 {
  font-size: 1.5rem;
}

.haber-content h3 {
  font-size: 1.25rem;
}

.haber-content ul,
.haber-content ol {
  margin-bottom: 1em;
  padding-left: 1.5xl;
}

.haber-content li {
  margin-bottom: 0.5em;
}

.haber-content blockquote {
  border-left: 4px solid #DC2626;
  padding-left: 1em;
  margin: 1em 0;
  font-style: italic;
  color: #4B5563;
}

.haber-content a {
  color: #DC2626;
  text-decoration: none;
}

.haber-content a:hover {
  text-decoration: underline;
}

.haber-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5em 0;
}

.haber-content strong {
  font-weight: 700;
  color: #1F2937;
}

.haber-content em {
  font-style: italic;
}

.haber-content code {
  background: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.9em;
}

.haber-content pre {
  background: #1f2937;
  color: #f3f4f6;
  padding: 1em;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1em 0;
}
