
  body {
    background: white;
  }
  .fab-container {
    position: fixed;
    bottom: 100px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  .fab-button {
    background-color: #008080;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
  }
  .fab-button:hover {
    background-color: #006666;
  }
  .social-icons {
    margin-bottom: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  .social-icon:hover {
    background-color: #008080;
  }
  .social-icon svg {
    fill: #333;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
  }
  .social-icon:hover svg {
    fill: white;
  }
