#sab-app-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

#sab-app-banner img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

.app-banner-text {
  flex-grow: 1;
  min-width: 0;
}

#install-app {
  background: #007aff;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  max-height: 36px;
  line-height: 1;
}

#install-app:hover {
  background: #0065d9;
}

#close-banner {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  z-index: 10000;
}

.app-rating {
  color: #f5a623; /* Gold */
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

