.app-download-buttons {
  position: fixed;
  top: 12px;
  left: 35%;
  transform: translateX(-35%);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 4px 12px 4px 8px;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  border: 1px solid #e0e0e0;
  min-height: 40px;
  min-width: 180px;
  max-width: 260px;
  pointer-events: auto;
}

.app-download-buttons a {
  margin: 0 4px;
  display: inline-block;
}

.app-download-buttons img {
  height: 30px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.1s;
  box-shadow: none;
}

.app-download-buttons a:hover img {
  transform: scale(1.07);
}

.app-download-close {
  background: none;
  border: none;
  color: #888;
  font-size: 22px;
  font-weight: bold;
  margin-right: 6px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px 0 0;
  transition: color 0.15s;
}

.app-download-close:hover {
  color: #222;
}

@media (max-width: 600px) {
  .app-download-buttons {
    top: 4px;
    padding: 2px 4px 2px 2px;
    min-height: 28px;
  }

  .app-download-buttons img {
    height: 18px;
  }

  .app-download-close {
    font-size: 16px;
  }
}
