.lsp-pill-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    transition: all 0.3s ease;
}

.lsp-pill {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.lsp-pill button {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lsp-pill button:hover {
    background: #f5f5f5;
    color: #003605;
}

.lsp-pill button.active {
    background: #003605;
    color: #fff;
}

/* Animations */
@keyframes lspFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.lsp-show {
    animation: lspFadeInUp 0.4s forwards;
}

/* RTL Support for Urdu if needed */
[dir="rtl"] .lsp-pill {
    flex-direction: row-reverse;
}
