body {
    font-family: Arial, sans-serif;
    background-color: #ffdddd;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    background-color: #ffdddd;
    max-width: 400px;
    width: 100%;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.logo {
    width: 50px;
    height: 50px;
    background-color: #FF9999;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo::before {
    color: white;
    font-size: 24px;
}
img {
    width: 70px;
    height: 70px;
}
h1 {
    color: #f6abab;
    font-size: 24px;
    margin: 0;
}
.button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6abab;
    color: #000;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}
.button:hover {
    background-color: #FFA3A3;
}
.button-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.button-arrow {
    font-size: 24px;
}
.back-button {
    background-color: #FF9999;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}
.back-button:hover {
    background-color: #FF8080;
}