
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: none;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #333;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 20;
  }
  
  .menu ul {
    list-style: none;
    padding: 0;
  }
  
  .menu ul li {
    padding: 15px;
    border-bottom: 1px solid #666;
  }
  
  .menu ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 28px; /* Butonun normal boyutundan biraz daha büyük */
    cursor: pointer;
    z-index: 30;
    color: black;
    transition: transform 0.3s ease; /* Transform geçiş efekti ekleyelim */
    /* Ek stil: Büyük X simgesi için font ailesi ve stil */
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.menu-btn.active {
    transform: rotate(90deg); /* Aktif olduğunda dönme efekti verelim */
    color: white; /* Aktif olduğunda rengi beyaz olsun */
}
