#share-cart {
		margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
		line-height: 1lh;

    padding: 0.38rem;
    font-size: 0.80rem;
    font-weight: 300;

    color: #fff;
    background: var(--theme-palette-color-1);
    border: none;
    border-radius: 0.5em;

    cursor: pointer;
    user-select: none;

    transition:
        background 0.2s ease;
}

#share-cart:hover {
    background: var(--theme-palette-color-2);
}

#share-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#share-result {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #374151;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#share-result:not(:empty) {
    opacity: 1;
}

#share-result input {
    margin-top: 0.4rem;
    padding: 0.4rem 0.5rem;
    width: 100%;

    font-size: 0.85rem;
    border-radius: 0.4rem;
    border: 1px solid #d1d5db;
}
