/**
 * CTA Button Manager Frontend Styles
 */
.cta-button-wrapper {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    background: rgb(38, 73, 53);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s cubic-bezier(0, 0.67, 0.58, 1);
}

.cta-button:hover {
    transform: scale(1.1);
}

.cta-button img {
    max-width: 60%;
    max-height: 60%;
    display: block;
} 