 /* Temel Sayfa Stilleri */
 nav { 
    background-color: rgb(237, 237, 237); 
    padding: 0.5rem; 
    /* margin-top: 0rem; */ /* Kaldırıldı veya isteğe bağlı */
    box-shadow: 2 2px 4px rgba(0,0,0,0.1);
}
nav .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 1rem;
}
nav ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    text-align: center; 
}
nav ul li { 
    display: inline-block; 
    margin: 0 1rem; 
}
nav a { 
    color: black; 
    text-decoration: none; 
    font-weight: bold; 
    padding: 0.5rem 0;
}
nav a.active { 
    text-decoration: underline; 
    color: #007bff; /* Aktif link için örnek renk */
}
nav a:hover { 
    text-decoration: underline; 
    color: #007bff; /* Hover için örnek renk */
}

/* NAVBAR background rengi buradan ayarlanır ddd eski rengi*/
.topnav {
    overflow: hidden;
    background-color: #fff;
    height: 49px; /* Yüksekliği korumak isterseniz */
    border-radius: 4px; /* Üst köşeler için yuvarlaklık */
    border-bottom: 1px solid #fff; /* Navbar altına ince çizgi ekler, renk ve kalınlığı ayarlayabilirsiniz */
  }
  
  /* NAVBAR yazı font rengi buradan ayarlanır f2f2f2 eski rengi*/
  .topnav a {
    float: left;
    color: #000;
    text-align: center;
    padding: 2px 14px;
    vertical-align: baseline;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
    height: 49px;
  }
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
    height: 49px;
  }
  /* Create a right-aligned (split) link inside the navigation bar */
  .topnav a.split {
    float: right;
    background-color: white;
    color: black;
    height: 49px;
  }
  footer {
   position:fixed;
   text-align: center; 
   font-size: 0.9rem; 
   bottom: 0px;
   left: 0px;
   width: 100%;
   height: 20px;
   padding:0px;
   background-color: #ddd;
   color:black;
  }
nav .navbar-brand img {
    width:150px;
    height: 50px;
} 
  .topnav img.logo {
    padding: 0px 0px;
    height: 49px; /* Bu kural logonuzu 49px yapıyor olabilir */
    float: left;
}


