margin: 10px auto;margin: 10px auto;margin: 10px auto;body {
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    padding: 0;
}
.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #717171;
    color: white;
}
.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.title {
	padding: 10px;
    text-align: center;
    flex-grow: 1; /* Ocupa todo el espacio disponible en el centro */
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

form {
    max-width: 400px;
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin: 10px;
}

p {
    margin-bottom: 20px;
}

input[type="tel"],
input[type="text"] {
    width: 95%;
    padding: 2.5%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#getLocation {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

#getLocation:hover {
    background-color: #45a049;
}

#camera-preview,
#photo-preview {
    margin-bottom: 20px;
}

#capture-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#capture-button:hover {
    background-color: #45a049;
}

#foto {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /*bottom: 10px;
    right: 10px;*/
}

button:hover {
    background-color: #2980b9;
}


video {
            display: block;
            margin-top: 20px;
            width: 100%;
            max-width: 600px;
            height: auto;
}

#datos {
	margin: 10px auto;
	color: red;
	font-weight: bolder;
}

#general {
	align-content: center;
	text-align: center
}

.input-group {
    border: solid .5px;
	padding: 5px;
    margin: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

/* Estilos para pantallas pequeñas (menos de 600px de ancho) */
@media (max-width: 600px) {
    .header {
        padding: 5px;
        position: relative;
        font-size: 1em;
    }
    .logo {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .title {
        font-size: 1em;
    }
    .slider-container {
        height: auto;
        padding: 20px 0;
    }
    .slider-item {
        flex-basis: 100%;
        margin: 0 5px;
    }
    .person-image {
        width: 50px;
        height: 50px;
    }
    button {
        font-size: 14px;
        padding: 5px 10px;
    }
}

/* Estilos para pantallas medianas (entre 601px y 1024px de ancho) */
@media (min-width: 601px) and (max-width: 1024px) {
    .header{
        padding: 10px;
        position: relative;
    }
    .logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .title {
        font-size: 1em;
    }
    .slider-item {
        flex-basis: 50%;
    }
    .person-image {
        width: 75px;
        height: 75px;
    }
}

/* Estilos para pantallas grandes (más de 1024px de ancho) */
@media (min-width: 1092px) {
    .header{
        width: 100%;
        position: relative;
        padding: 0px;
    }
    .title {
        font-size: 1em;
    }
    .logo {
        width: 40px;
        height: 40px;
        margin: 10px;
    }
    /* Mantén los estilos para pantallas medianas y aplica otros cambios si es necesario */
}