/* FinUtopia Mobile App Stylesheet */

:root {
  --mob-bottom-nav-height: 65px;
}

body {
  padding-bottom: calc(var(--mob-bottom-nav-height) + 1rem);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mob-bottom-nav-height);
  background: rgba(13, 16, 24, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 200;
  padding: 0 0.5rem;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  flex: 1;
  height: 100%;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--accent-violet);
  font-weight: 700;
}

.bottom-nav-item.active i {
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

/* Mobile Header Bar */
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 11, 16, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Touch-optimized Cards */
.mobile-card {
  background: rgba(18, 22, 32, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Mobile Chat Window */
.mobile-chat-box {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 210px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(18, 22, 32, 0.85);
  overflow: hidden;
}
