.share-buttons-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pico-muted-color);
    margin-right: 0.5rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--pico-primary-inverse);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.share-button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.share-button:hover svg {
    transform: scale(1.1);
}

.share-button-twitter {
    background: #1da1f2;
}

.share-button-twitter:hover {
    background: #0d8bd9;
}

.share-button-facebook {
    background: #1877f2;
}

.share-button-facebook:hover {
    background: #166fe5;
}

.share-button-linkedin {
    background: #0a66c2;
}

.share-button-linkedin:hover {
    background: #004182;
}

.share-button-copy {
    background: var(--pico-contrast-background);
    color: var(--pico-contrast-inverse);
}

.share-button-copy:hover {
    background: var(--pico-contrast-hover-background);
    color: var(--pico-contrast-inverse);
}

.copy-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    box-shadow: var(--pico-card-box-shadow);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    transform: translateX(100%);
    opacity: 0;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.copy-notification-success {
    background: var(--pico-primary-background);
    color: var(--pico-primary-inverse);
}

.copy-notification-error {
    background: var(--pico-color-red-550);
    color: var(--pico-primary-inverse);
}
