.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;
  }
  .fixed-header {
    background-color: rgb(20, 19, 19);;
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
}
.fixed-header img {
  height: 40px;
  max-height: 40px;
  object-fit: contain;
}
.header-text {
  color:white;
  margin-right: 10%;
  font-size: 24px;
  margin-bottom: 5px;
}
  .scrollable-content {
    position: absolute;
    top: 60px;
    bottom: 70px;
    width: 100%;
    /* 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 */
    word-break: break-word;    /* add this line */
    overflow-wrap: break-word;
  }
  .add-button-container {
    background-color: rgb(20, 19, 19);
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 0px;
  }

  .home-icon,
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 60px; */
    padding-left: 30px;
    padding-right: 30px;
    color: white
  }

  .add-button {
    width: 60px;
    height: 60px;
    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: 50px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    top: -35px;
  }
  .add-button span {
    line-height: 0px;
}

  .add-button:hover {
    background-color: rgb(56, 54, 54);
    color: white
  }

  .no-style-button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
  }

  @media only screen and (max-width: 600px) {
    .phone-screen {
        width: 100vw;
        height: 100vh;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}