/* public/css/style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 60px; /* Footer yüksekliği kadar */
}

.jumbotron { /* Bootstrap 5'te jumbotron yok, özel class ekleyebiliriz */
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
}

.card-header h4 {
    margin-bottom: 0;
}

/* Footer'ı sayfanın altına sabitlemek için (içerik azsa) */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px; /* Footer yüksekliği kadar */
}
footer.bg-light {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Footer yüksekliği */
  line-height: 60px; /* Dikey ortalama için */
}

