/* FL Eventos - Mobile (Capacitor) shell */
:root{
  --fl-tabbar-height: 64px;
}

body{
  background: #f7f7f8;
}

/* Keep content visible behind fixed bars */
body.fl-mobile,
body:has(.fl-mobile-tabbar){
  padding-bottom: calc(var(--fl-tabbar-height) + env(safe-area-inset-bottom, 0px));
}

.fl-mobile-topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.fl-mobile-safe-top{
  height: calc(56px + env(safe-area-inset-top, 0px));
}

.fl-mobile-logo{
  height: 28px;
  width: auto;
}

.fl-mobile-safe-bottom{
  height: env(safe-area-inset-bottom, 0px);
}

.fl-mobile-tabbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--fl-tabbar-height) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 1030;
}

.fl-mobile-tabbar .fl-tab{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #6c757d;
  font-size: 12px;
  padding: 8px 6px;
}

.fl-mobile-tabbar .fl-tab i{
  font-size: 20px;
}

.fl-mobile-tabbar .fl-tab.active,
.fl-mobile-tabbar .fl-tab:active,
.fl-mobile-tabbar .fl-tab:focus{
  color: var(--bs-primary);
}

.container{
  max-width: 100%;
}

/* Reduce big paddings for mobile */
.py-5{ padding-top: 2rem !important; padding-bottom: 2rem !important; }
.display-5{ font-size: 1.75rem; }
