/* Common styles for InfluAgent Mobile App */
:root {
  --primary-color: #5271FF;
  --secondary-color: #9747FF;
  --background-color: #F8F9FA;
  --text-color: #333333;
  --light-gray: #E5E7EB;
  --medium-gray: #9CA3AF;
  --dark-gray: #4B5563;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --danger-color: #EF4444;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #F2F2F7;
  color: var(--text-color);
}

.iphone-container {
  width: 390px;
  height: 844px;
  background-color: white;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  border: 12px solid #111;
}

.status-bar {
  height: 44px;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.time {
  font-weight: 600;
  font-size: 16px;
}

.status-icons {
  display: flex;
  gap: 5px;
}

.app-content {
  height: calc(100% - 134px); /* Subtract status bar and tab bar heights */
  overflow-y: auto;
  padding: 15px;
  box-sizing: border-box;
  
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Hide scrollbar for IE/Edge */
  -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome/Safari/WebKit browsers */
.app-content::-webkit-scrollbar {
  display: none;
  width: 0;
}

/* Ensure smooth scrolling behavior */
.app-content {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.tab-bar {
  height: 90px;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 0;
  border-top: 1px solid var(--light-gray);
  padding-bottom: 20px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tab-icon {
  font-size: 24px;
  color: var(--medium-gray);
}

.tab-label {
  font-size: 12px;
  color: var(--medium-gray);
}

.active .tab-icon,
.active .tab-label {
  color: var(--primary-color);
}

.card {
  background-color: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.button-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

.button-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

.section-header {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 16px 0;
} 