html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Haber detay sayfası için HTML içerik stilleri */
.haber-detay-content {
  line-height: 1.8;
}

.haber-detay-content p {
  margin-bottom: 1rem;
}

.haber-detay-content br {
  display: block;
  margin-bottom: 0.5rem;
}

/* Resim stilleri */
.haber-resim-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f4f6;
  min-height: 300px;
}

.haber-resim-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Haber kartı başlık sınırlaması */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* bg-red-600 override - Yeşil renk */
.bg-red-600 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 128 54) !important;
}

/* Navigation bar için özel stil */
nav.bg-red-600 {
  background-color: #008036 !important;
}

