  .access-trigger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    background: #7a6ad8;
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .access-trigger-btn:hover {
    transform: scale(1.1); 
    background: #6a5ac8;
  }

  .access-panel {
    position: fixed;
    bottom: 100px; 
    right: 30px;
    z-index: 9999;
    background: white;
    padding: 10px;
    border-radius: 50px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .access-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .access-btn-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .access-btn-small:hover {
    background: #7a6ad8;
    color: white;
    border-color: #7a6ad8;
  }

  .zoom-display {
    min-width: 50px;
    text-align: center;
    font-weight: bold;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }
