En la pantalla de la sesion activa en la que corre el timepo desde que se aparco el auto no hay manera de detenerlo, hace que sea posible frenar la sesion con un boton de stop, ademas, agregale el boton que tienen las demas paginas de Home, para asi poder mientras estoy aparcando y el tiempo corriendo, poder ir a ver el mapa inicial con ubicaciones y demas.
Ya veo el problema. El boton "End Parking" existe pero esta muy abajo y el boton "Home" tambien esta. Voy a reorganizar para que sea mas claro: un boton STOP grande y visible para detener el cronometro, y el boton Home mas accesible.
Listo. Ahora la pantalla de sesion activa tiene:
Ambos botones estan en la parte inferior de la pantalla, bien visibles y accesibles.
The pattern is clear. The root cause is overflow-hidden on the outer wrapper combined with flex-1 inner sections that don't scroll. The fix is simple: change the outer wrapper from overflow-hidden to overflow-hidden but make the scrollable middle section use overflow-y-auto with proper height. Let me fix each screen:
Active session — biggest problem. The flex-1 timer area is not scrollable so the bottom buttons get cut off.
Now fix the confirmation screen — it uses overflow-hidden on the outer div:
Also fix the pb-10 on the home button at the bottom of confirmation so it doesn't get eaten by the safe area:
Now fix payment screen — outer is already overflow-hidden, middle section is overflow-y-auto which is correct, but the outer needs to not clip:
Now fix parking detail — same pattern:
Now fix partner dashboard — same:
Now check the remaining screens (history, profile):
Profile and history also have overflow-hidden on the outer wrapper. Onboarding and home screen are intentionally non-scrollable (map stays fixed), so those stay as-is.
Listo. El fix fue simple: en todas las pantallas el overflow-hidden en el contenedor raiz estaba impidiendo el scroll aunque el contenido interno tuviera overflow-y-auto. Se elimino ese overflow-hidden del wrapper externo en active-session, parking-detail, payment, confirmation, partner-dashboard, profile e history. El home screen y el onboarding se mantienen igual porque son pantallas de mapa/splash que no deben scrollear.