body{
font-family: Montserrat, serif;
margin: 0px;
background-color: #e5e7eb;

}
.container {
    background-color: #fafafa !important;
    color: #1a1a1a !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: solid 0px;
    padding: 20px;
    background-color: #141414;
    border-radius: 15px;
    box-shadow: 0 0 0 0.1 #555;
    font-size: 14px;
    letter-spacing: 0px;
    margin: 0; 
    margin-bottom: 30px; 
    margin-right: 30px;
}


.top{
background-color: #ffffff;
color: #141414;
font-size: 18px;
font-weight: 600;
align-content: center;
font-family: montserrat;
padding: 15px;
align-content: center;
text-align: center;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
z-index: 999;
}

button{
    background-color: #ff3b80;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    padding: 15px;
    border: 0px;
    width: 250px;
    font-family: Montserrat;
    margin-top: 7px;
}


.banner-container {
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: inherit; /* O cualquier valor específico si lo necesitas */
}

.banner-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input{
    height: 40px; 
    width: 90%;
    max-width: 500px;
    margin-left: 10px;
    margin-bottom: 8px;
    border-radius: 7px;
    font-size: 16px;
    border: solid 1px #666;

}

input[type="submit"] {
    height: 40px; 
    width: 200px;
    background-color: black;
    font-size: 14px;
    color: white;
    border: solid 0px white;
}


.fixed-button-container {
    position: fixed; 
    left: 0;
    right: 0; 
    bottom: 0px; 
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.parent-container {
    display: flex;
    margin-top: 30px;
    justify-content: center; 
    max-width: 90%; 
    margin-left: auto;
    margin-right: auto;
}

.container {
    flex-basis: 60%; /* Esto le dice al contenedor que ocupe el 50% del ancho del contenedor padre */
    margin-right: 10px; /* Esto es para agregar un poco de espacio entre los dos contenedores */

}

.container.info {
    flex-basis: 25%; 
    position: sticky;
    top: 60px;
}


.ubicacion{
    border: solid 1px #555;
    padding: 15px;
    color: #ffffff;
    background-color: #141414;
    text-decoration: none;
    border-radius: 10px; 
    box-shadow: 0 0 0 0.1 #555;
    margin-top: 20px;
    margin-bottom: 30px;

}

.ubicacion:hover{
    border: solid 1px #555;
    padding: 15px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 15px; 
    box-shadow: 0 0 0 0.1 #555;
    
}

.footer{
    background-color: #141414;
    width: 100%;
    height: 200px;
    margin-top: 60px;
    color: #ffffff;
    justify-content: center;
    text-align: left;
    padding-top: 50px;
    padding-left: 50px;
}

.fecha{
    font-size: 16px;
}

#shareButton{
    margin-top: 5px;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
}
#shareButton:hover{
    margin-top: 5px;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    background-color: black;
}


/* Estilos para pantallas de ancho menor a 768px (típicamente dispositivos móviles) */
@media (max-width: 768px) {
    .parent-container {
        flex-direction: column;
        align-items: center;
    }

    .container, 
    .container.info {
        flex-basis: 90%;
        margin-right: 0;
        width: 90%;
        margin: 10px;
        padding-bottom: 40px;

    }

    .footer{
        padding: 0px;
        padding-top: 20px;
    }
}