/* phone.css - Sin estilos, listo para personalizar */
* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: black;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin: 0;
}

#abajo {
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 50px;
    justify-content: stretch;
}

button {
    background-color: #36e452;
    padding: 10px 20px;
    border: none;
    font-weight: normal;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.1s;
    width: 100%;
}

#takePhotoBtn {
    width: 100%;
}

#cancelBtn {
    background-color: #fe3d46;
    color: white;
}

#previewContainer {
    display: none;
    flex-direction: row;
    width: 100%;
    justify-content: stretch;
    gap: 10px;
}

#previewContainer button {
    flex: 1;
}

#previewImg {
    width: 80%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 4px solid whitesmoke;
}

#for3v {
    position: fixed;
    top: 40px;
    left: 10px;
}