body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.phone {
    width: 375px; /* Tamaño de un iPhone X */
    height: 667px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: white;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #eee;
}

.left-icons, .right-icons {
    display: flex;
    align-items: center;
}

.arrow-back {
    width: 24px;
    height: 24px;
    background-image: url('arrow-back-icon.svg');
    background-size: cover;
}

.status-bar {
    margin-left: 8px;
    font-weight: bold;
}

.menu {
    width: 24px;
    height: 24px;
    background-image: url('menu-icon.svg');
    background-size: cover;
}

.chat-output {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse; /* Asegúrate de que esté en columna */
    height: calc(100% - 60px);
}

.chat-input-container {
    display: flex;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#chat-input {
    flex-grow: 1;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    outline: none;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
}

button:hover {
    background-color: #0056b3;
}

.message {
    margin: 5px;
    padding: 10px;
    border-radius: 20px;
    max-width: 70%;
}

.user {
    align-self: flex-end;
    background-color: #dcf8c6;
}

.bot {
    align-self: flex-start;
    background-color: #eee;
}

