/* CSS */
.custom-icon-bar-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }
  
  .custom-icon-bar-item {
    position: relative;
    width: 50px;
    height: 50px;
    margin-left: -5px;
    animation: custom-icon-float 3s ease-in-out infinite;
  }
  
  .custom-icon-bar-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 0 30px 30px 0;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 50px;
    transition: width 0.4s ease;
  }
  
  .custom-icon-bar-item a:hover {
    width: 180px;
  }
  
  .custom-icon-bar-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .custom-icon-bar-label {
    white-space: nowrap;
    font-size: 14px;
    color: #333;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .custom-icon-bar-item a:hover .custom-icon-bar-label {
    opacity: 1;
  }
  
  /* Hafif yukarı-aşağı hareket animasyonu */
  @keyframes custom-icon-float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  