.phone-screen {
    width: 375px; /* Typical phone screen width */
    height: 667px; /* Typical phone screen height */
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: rgb(20, 19, 19);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
  }
  .scrollable-content {
    height: calc(100% - 70px); /* Adjust height to leave space for the button */
    overflow-y: auto;
    padding: 15px;
  }
  .scrollable-content .card {
    background-color: #FDE213; /* Set card background color to yellow */
  }
  .add-button-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .home-icon,
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .add-button {
    width: 50px;
    height: 50px;
    background-color: #e0e5eb;
    color: rgb(56, 54, 54);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    cursor: pointer;
  }

  .add-button:hover {
    background-color: #0056b3;
  }

  .no-style-button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
  }