.sheet-actions
{
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 0;
    display: flex;
    gap: 12px;
    background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-custom) 96%, transparent));
}

.sheet-btn
{
    flex: 1;
    height: 56px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid color-mix(in oklab, var(--fg-custom) 14%, transparent);
    background: linear-gradient(180deg, var(--accent-custom), var(--accent-2-custom));
    color: #fff;
}

.sheet-btn.ghost
{
    background: color-mix(in oklab, var(--bg-custom) 92%, transparent);
    color: var(--fg-custom);
}