/* sticky-footer.css */

/* Footer'ı ekranın altına yapıştırır */
footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa; /* Açık gri arka plan */
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
  z-index: 100;
}

/* Responsive uyumlu hale getirir */
@media (max-width: 768px) {
  footer {
    font-size: 12px;
    padding: 8px 10px;
  }
}