/* * Bureau Rotterdam - Sticky Social Tabs Styling
 * Alle selectors zijn geprefixed met .br-sst- om conflicten te voorkomen.
 */

.br-sst-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999; /* Verhoogd zodat het altijd boven thema-elementen staat */
    background-color: #333;
    padding: 10px 5px 10px 10px;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.3);
}

.br-sst-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Ruimte tussen de icoontjes */
}

.br-sst-item {
    margin: 0 !important;
    padding: 0 !important;
}

.br-sst-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 18px;
    background-color: #555;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.br-sst-link:hover {
    background-color: #2271b1; /* Jullie actieve tab-kleur voor consistentie */
    transform: translateX(-5px); /* Subtiele animatie naar links bij hover */
    color: #fff !important;
}

/* Specifieke hover-kleuren indien gewenst (optioneel) */
.br-sst-link.facebook:hover  { background-color: #3b5998; }
.br-sst-link.instagram:hover { background-color: #e4405f; }
.br-sst-link.linkedin:hover  { background-color: #0077b5; }
.br-sst-link.x:hover         { background-color: #000000; }