/* Estilos para la página de Mediciones y Reportes */
.content-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.image-column {
    flex: 1;
    max-width: 400px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-column {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.text-column p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.text-column .btn {
    align-self: flex-start;
    margin-top: 1rem;
    background-color: #cf2028;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
} 