/* FAB button styling */
body {
      margin: 0;
      padding: 0;
     
    }
    .fab-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
    }
    .fab-button {
      width: 56px;
      height: 56px;
      background-color: #5856D6;
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .fab-button:hover {
      transform: scale(1.1);
    }

    .fab-icon {
      font-size: 24px;
    }