/**
 * RiskPlus Cookie Consent Button Styling
 */

#riskplus-cookiebtn {
  background: white;
  width: 2.6rem;
  height: 2.6rem;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  border: 1px solid #328192;
  border-radius: 50%;
  align-content: center;
  z-index: 2147483646;
  cursor: pointer;
}

#riskplus-cookiebtn button {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* SVG Icon Styling */
#riskplus-cookiebtn .cookie-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: #328192;
  display: block;
}

/* Hover effect */
#riskplus-cookiebtn:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  #riskplus-cookiebtn {
    width: 2.4rem;
    height: 2.4rem;
    bottom: 1rem;
    left: 1rem;
  }

  #riskplus-cookiebtn .cookie-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}
