/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Sticky bar base */
.social-sticky-bar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 5px 0;
}

/* Tab links */
.social-sticky-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 1;
    text-align: center;
    font-size: var(--label-font-size, 14px);
    padding: var(--sticky-padding, 10px) 5px;
    transition: color 0.3s ease;
}

/* Icon styles */
.social-sticky-bar a i {
    font-size: var(--icon-size, 24px);
    margin-bottom: 2px;
    color: var(--icon-color, #111);
    transition: color 0.3s ease;
}

/* Label styles */
.social-sticky-bar a span {
    line-height: 1.2;
    color: var(--label-color, #111);
    transition: color 0.3s ease;
}

/* Hover effect - separate icon and label colors */
.social-sticky-bar a:hover i {
    color: var(--icon-hover-color, #0073e6);
}
.social-sticky-bar a:hover span {
    color: var(--label-hover-color, #0073e6);
}

/* Position overrides */
.social-sticky-bar.position-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}
.social-sticky-bar.position-top {
    top: 0;
    left: 0;
    right: 0;
    border-top: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.social-sticky-bar.position-left,
.social-sticky-bar.position-right {
    width: auto;
    min-width: calc(var(--icon-size, 24px) + (var(--sticky-padding, 10px) * 2));
    flex-direction: column;
    padding: 0 var(--sticky-padding, 10px);
}

/* Vertical layout spacing */
.social-sticky-bar.position-left a,
.social-sticky-bar.position-right a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sticky-padding, 10px) 0;
    white-space: nowrap; /* keep label in one line */
}

/* Responsive bottom space */
body {
    padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}
