#apj-entry-root {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}

.apj-entry-button {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 3px solid #e60012;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.apj-entry-button:hover {
  transform: scale(1.08);
}

.apj-entry-button:focus-visible {
  outline: 3px solid rgba(230, 0, 18, 0.35);
  outline-offset: 4px;
}

.apj-entry-button img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  #apj-entry-root {
    right: 20px;
    bottom: 20px;
  }

  .apj-entry-button {
    width: 60px;
    height: 60px;
  }
}
