/* /Components/Social.razor.rz.scp.css */
:root[b-mrc8di7n9e] {
    --bg: #ffffff;
    --text-primary: #121212;
    --btn-bg: #1976d2;
    --btn-bg-hover: #125ea6;
    --btn-text: #ffffff;
    --card-bg: #f8f8f8;
    --social-border: #cccccc;
    --social-border-hover: #1976d2;
    --social-icon: #121212;
    --social-icon-hover: #1976d2;
}

.dark[b-mrc8di7n9e] {
    --bg: #121212;
    --text-primary: #eeeeee;
    --btn-bg: #4dabf5;
    --btn-bg-hover: #90caf9;
    --btn-text: #121212;
    --card-bg: #1e1e1e;
    --social-border: #444;
    --social-border-hover: #90caf9;
    --social-icon: #eeeeee;
    --social-icon-hover: #90caf9;
}

.social[b-mrc8di7n9e] {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

    .social ul[b-mrc8di7n9e] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .social ul li[b-mrc8di7n9e] {
            margin: 0.5rem 0;
            transition: all 0.3s ease;
        }

            .social ul li a[b-mrc8di7n9e] {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                border: 2px solid var(--social-border);
                border-radius: 50%;
                text-decoration: none;
                color: var(--social-icon);
                transition: all 0.3s ease;
                position: relative;
            }

                .social ul li a i[b-mrc8di7n9e] {
                    font-size: 20px;
                    transition: all 0.3s ease;
                    z-index: 1;
                }

                .social ul li a[b-mrc8di7n9e]::before {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    background: var(--social-border-hover);
                    opacity: 0;
                    transform: scale(0.9);
                    transition: all 0.3s ease;
                    z-index: 0;
                }

                .social ul li a:hover[b-mrc8di7n9e] {
                    border-color: var(--social-border-hover);
                    color: var(--social-icon-hover);
                }

                    .social ul li a:hover i[b-mrc8di7n9e] {
                        color: var(--social-icon-hover);
                        text-shadow: 0 0 10px var(--social-icon-hover);
                    }

                    .social ul li a:hover[b-mrc8di7n9e]::before {
                        opacity: 0.1;
                        transform: scale(1.2);
                    }

/* Mobile tweaks */
@media only screen and (max-width: 480px) {
    .social[b-mrc8di7n9e] {
        right: 0.5rem;
    }

        .social ul li a[b-mrc8di7n9e] {
            width: 40px;
            height: 40px;
        }

            .social ul li a i[b-mrc8di7n9e] {
                font-size: 16px;
            }
}
