    body {
        padding-top: 80px; /* Header yüksekliği + boşluk */
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }      
    
    .fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: 60px; /* Header yüksekliği */
    }
    
    /* Ana içerik için boşluk ayarı (YENİ EKLENDİ) */
    .container {
        margin-top: 20px; /* Header ile içerik arası boşluk */
    }
    
    /* Navbar stilleri */
    .offcanvas-start {
        width: 250px;
    }
    
    .navbar-content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }        
    
    .auth-icons .btn {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-left: 8px;        
    }    
    /* Mobil cihazlar için özel stil */
    @media (max-width: 575.98px) {
      .row > [class^="col-"] {
        margin-bottom: 30px;
      }
      .row > [class^="col-"]:last-child {
        margin-bottom: 0;
      }
    }    
