body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f0f0;
    align-items: center; /* Center children horizontally */
}

header {
    width: 100%;
}

.phone-container {
    width: 375px;
    height: 812px;
    background-color: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.phone-frame {
    width: 100%;
    height: 100%;
    border: 12px solid #000;
    border-radius: 40px;
    box-sizing: border-box;
    padding: 20px;
}

.phone-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.app-icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 30px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.app-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.back-button {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #007aff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.add-item-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #007bff; /* You can adjust this color */
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.form-container {
    position: relative;
}