<style>
  .ios-bar-wrapper {
    width: 100%;
    padding: 16px;
    padding-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .ios-app-bar {
    display: flex;
    gap: 26px; /* distanza tra icone */
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.1);

    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.16),
      0 0 0 1px rgba(255,255,255,0.5);

    max-width: 320px; /* larghezza massima */
  }

  .ios-app-item,
  .ios-app-item * {
    color: #000 !important;
    fill: #000 !important;
  }

  .ios-app-item {
    text-align: center;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  }

  .ios-app-icon-wrap {
    width: 40px;
    height: 40px;
    margin: 0 auto 3px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.09),
      inset 0 0 0 1px rgba(255,255,255,0.4);
  }

  .ios-app-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .ios-app-label {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
  }

  .ios-app-item:active .ios-app-icon-wrap {
    transform: scale(0.94);
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.20),
      inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  }
</style>