/* Kira Diverse Sticky Share Bar styles */

.kdss-share-bar {
    position: fixed;
    top: 160px;
    left: 30px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 99999;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.kdss-share-bar.kdss-position-right {
    left: auto;
    right: 30px;
}

.kdss-share-title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

.kdss-share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s ease-in-out;
    border-width: 2px;
    border-style: solid;
}

/* Hide on mobile if configured via inline style (class added in JS) */
@media (max-width: 768px) {
    .kdss-hide-mobile {
        display: none !important;
    }
}
