#ra-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #37AAE1;
  color: white;
  padding: 12px 15px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
  line-height: 20px;
  display: none;
}

#ra-launcher::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: ra-pulse 2s infinite;
}

@keyframes ra-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

#ra-banner {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  background: #005487;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
}

#ra-close {
  align-self: end;
  width: 28px;
  height: 28px;
  padding: 4px;
  background-color: transparent;
  border: none;
  color: white;
}

#ra-banner.open {
  transform: translateY(-75px);
}

.ra-content {
  max-width: 1200px;
  margin: auto;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.ra-text h4 {
  margin: 0px 0px 10px;
}

.ra-text p,
.ra-text h4 {
  color: white;
}

.ra-actions {
  width: 20%;
}

.ra-button {
  width: 100%;
  background: white;
  color: #1c77bd;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ra-button:hover {
  text-decoration: none;
}

@media (max-width: 770px) {
  .ra-content {
    flex-direction: column;
    gap: 15px;
    padding: 10px 10px 20px;
  }

  .ra-actions {
    width: 100%;
  }
}