main{
    width: 100vw;
    overflow: hidden;
}
::-webkit-scrollbar {
    width: 10px; /* Kaydırma çubuğunun genişliği */
}

/* Kaydırma çubuğunun arka planı */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Kaydırma çubuğu tutamacının stili */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15); /* Yarı saydam siyah */
    border-radius: 10px; /* Yuvarlak köşeler */
    border: 2px solid transparent; /* Tutamacı arka plandan ayırmak için şeffaf kenarlık */
    background-clip: padding-box; /* Kenarlığı içe doğru tutar */
}

/* Fareyle üzerine gelindiğinde tutamacın stili */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.25); /* Biraz daha koyu */
}
  #mobileActionBar {
    position: fixed;
    bottom: -80px; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1050;
    transition: bottom 0.3s ease;
    padding: 5px;
    box-sizing: border-box;
  }

  /* Butonlar */
  #mobileActionBar a {
    flex: 1;
    margin: 0 5px;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.2s;
  }

  #mobileActionBar a:hover {
    transform: scale(1.05);
  }

  /* Custom renkler */
  #callBtn {
    background-color: #e74c3c; /* kırmızı */
  }

  #msgBtn {
    background-color: #3498db; /* mavi */
  }

  /* Sadece mobilde göster */
  @media (min-width: 992px) {
    #mobileActionBar {
      display: none;
    }
  }
@media (max-width: 767px) {
    .footer-logo{
        display:flex;
        justify-content:center;
    }
    .footer-about{
        text-align:center;
    }
}