.sticky-sidebar-dc98adc5 {
    position: fixed;
    z-index: 9999;
    display: flex;
    /* Remove background and shadow from container */
    background: transparent;
    box-shadow: none;
}

.sticky-sidebar-dc98adc5 a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Add background and shadow to individual links */
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* Base hover color handled by Elementor controls, but define structure */
.sticky-sidebar-dc98adc5 a:hover {
    background: #f5f5f5; /* Fallback */
}

.sticky-sidebar-dc98adc5 .ss-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-sidebar-dc98adc5 .ss-icon i {
    font-size: 20px;
}
.sticky-sidebar-dc98adc5 .ss-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sticky-sidebar-dc98adc5 .ss-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.sticky-sidebar-dc98adc5 a:hover .ss-text {
    max-width: 200px;
    opacity: 1;
}

/* Desktop: Vertical Right Middle */
@media (min-width: 1025px) {
    .sticky-sidebar-dc98adc5 {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        flex-direction: column;
        align-items: flex-end; 
    }
    .sticky-sidebar-dc98adc5 a {
        border-bottom: 1px solid #eeeeee;
        justify-content: flex-end;
        flex-direction: row-reverse;
        width: auto; 
        border-radius: 8px 0 0 8px; /* Curve individual items */
        margin-bottom: 2px; /* Slight gap optional, but keeps them separate */
    }
    .sticky-sidebar-dc98adc5 a:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .sticky-sidebar-dc98adc5 a:hover .ss-text {
        margin-right: 10px;
    }
}

/* Tablet & Mobile: Horizontal Bottom */
@media (max-width: 1024px) {
    .sticky-sidebar-dc98adc5 {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        border-top: none;
    }
    .sticky-sidebar-dc98adc5 a {
        flex: 1;
        border-right: 1px solid #eeeeee;
        border-top: 1px solid #eeeeee;
        flex-direction: column;
        padding: 10px 5px;
        border-radius: 0;
    }
    .sticky-sidebar-dc98adc5 a:last-child {
        border-right: none;
    }
    .sticky-sidebar-dc98adc5 .ss-text {
        font-size: 11px;
    }
    .sticky-sidebar-dc98adc5 a:hover .ss-text {
        max-width: 100%;
        margin-top: 5px;
    }
}