/* Mobile App Banner Styles */
#mobile-app-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #33CFC2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  display: none;
}

#mobile-app-banner.visible {
  display: block;
}

.banner-content {
  display: flex;
  align-items: center;
  padding: 20px 50px 12px 50px;
  gap: 12px;
}

.banner-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  color: white;
}

.banner-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 2px 0;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

.banner-subtitle {
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

.banner-button {
  background: white;
  color: #070417;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.banner-button:hover {
  background: #f8f8f8;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.banner-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-close:hover {
  color: white;
}

@media (max-width: 480px) {
  .banner-content {
    gap: 8px;
    padding: 16px 30px 10px 30px;
  }

  .banner-icon {
    width: 28px;
    height: 28px;
  }

  .banner-button {
    font-size: 12px;
    padding: 6px 12px;
  }

  .banner-button-icon {
    width: 18px;
    height: 18px;
  }

  .banner-title {
    font-size: 13px;
  }

  .banner-subtitle {
    font-size: 11px;
  }
}
