/* Sticky Vertical Contact Button Styles */
.svc-sticky-button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
}

.svc-sticky-button:hover {
    text-decoration: none;
}

.svc-sticky-button .svc-icon {
    font-size: 1.2em;
    line-height: 1;
}

/* Print styles */
@media print {
    .svc-sticky-button {
        display: none !important;
    }
}

/* Accessibility */
.svc-sticky-button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* RTL Support */
.rtl .svc-sticky-button {
    transform: translateY(-50%) rotate(90deg);
}

.rtl .svc-sticky-button .svc-button-text,
.rtl .svc-sticky-button .svc-icon {
    transform: rotate(-90deg);
}